From ce81dce7f182bd1a4d0910d6c0915d93f9675188 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 22 Oct 2024 20:56:42 -0700 Subject: [PATCH] Release 1.1.0 --- Changelog | 3 +++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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", -- 2.44.1