]> git.scottworley.com Git - nix-pin-deps/commitdiff
Release 1.1.0 master v1.1.0
authorScott Worley <scottworley@scottworley.com>
Wed, 23 Oct 2024 03:56:42 +0000 (20:56 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 23 Oct 2024 03:56:42 +0000 (20:56 -0700)
Changelog
default.nix
setup.py

index 95e7ac67de3a5959235022ae459cf24802812826..6c28270c82233c899c7fa4dd83aaba961270b6b8 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.1.0] - 2024-10-22
 - nix show-derivation → nix derivation show
 
 
index 146224c437d1755b827930ab6899e15f0acfe9a6..9beabfb59628ce41ae14b47f16bbf5977bffae31 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "nix-pin-deps";
-    version = "1.0.0";
+    version = "1.1.0";
     src = lib.cleanSource ./.;
     nativeCheckInputs = [ mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index d449047806553281e92d20ac49ed1c87960e1844..9417ea7240438851f2eece2af93af3924fd17016 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='nix-pin-deps',
-    version='1.0.0',
+    version='1.1.0',
     description="gc-pin dependencies of a partially-built derivation",
     author="Scott Worley",
     author_email="scottworley@scottworley.com",