]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.4 v3.0.4
authorScott Worley <scottworley@scottworley.com>
Mon, 7 Jun 2021 19:15:42 +0000 (12:15 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 7 Jun 2021 19:15:42 +0000 (12:15 -0700)
Changelog
default.nix
setup.py

index 7946d7b740ba28e2fdbf8aef4be45bd536f53840..04655b388fea6e799252a13af6a5f41519de11d5 100644 (file)
--- 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
index 8c8fbd31e47b708f726cdf82b92b415e636beb6e..f3816c5a5bb6829868554577a4b12c2f82ff59d4 100644 (file)
@@ -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 ];
index cb272ae5fb264d2dce965d95af60ec4116c49ee3..ab680db5a652ec1e718db5fcf23f868c933534b9 100644 (file)
--- 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'],