From 815e366bb8a93f938f435a0e6a347ce29c2e16da Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 7 Jun 2021 12:15:42 -0700 Subject: [PATCH] Release 3.0.4 --- Changelog | 3 +++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 7946d7b..04655b3 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [3.0.4] - 2021-06-07 ### Changed - Use nix from nixpkgs rather than from PATH. This is needed when the nix in PATH is nixUnstable-3.0pre20201020_e0ca98c or later because nix commit diff --git a/default.nix b/default.nix index 8c8fbd3..f3816c5 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git , autopep8, makeWrapper, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.4-pre"; + version = "3.0.4"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index cb272ae..ab680db 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.4-pre', + version='3.0.4', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'], -- 2.44.1