]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.3 v3.0.3
authorScott Worley <scottworley@scottworley.com>
Thu, 20 May 2021 07:11:26 +0000 (00:11 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 20 May 2021 07:11:26 +0000 (00:11 -0700)
Changelog
default.nix
setup.py

index 557dab4f3aab539b6d5fdd01d71784b2787c2327..ed58b284d25a355306eef2b9189df8f915114154 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,11 @@
 ## [Unreleased]
+
+
+## [3.0.3] - 2021-05-20
+### Changed
 - Don't pass --experimental-features to old nix versions
 
+
 ## [3.0.2] - 2021-02-16
 ### Changed
 - Don't rely on experimental-features=nix-command in system nix.conf
index faf474248c04430906781810f187ff5df6dfec96..8397cb6d87debf6bb5edaac1fd8af140b8d6f562 100644 (file)
@@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.3-pre";
+    version = "3.0.3";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 127bd8255196aae7d749ac5e7347ca314e53b1de..70fca63931e9b190878f81421a4a55aff03fbd43 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.3-pre',
+    version='3.0.3',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],