From: Scott Worley <scottworley@scottworley.com>
Date: Wed, 23 Oct 2024 03:56:42 +0000 (-0700)
Subject: Release 1.1.0
X-Git-Tag: v1.1.0
X-Git-Url: http://git.scottworley.com/nix-pin-deps/commitdiff_plain/ce81dce7f182bd1a4d0910d6c0915d93f9675188

Release 1.1.0
---

diff --git a/Changelog b/Changelog
index 95e7ac6..6c28270 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.1.0] - 2024-10-22
 - nix show-derivation → nix derivation show
 
 
diff --git a/default.nix b/default.nix
index 146224c..9beabfb 100644
--- a/default.nix
+++ b/default.nix
@@ -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;
diff --git a/setup.py b/setup.py
index d449047..9417ea7 100644
--- 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",