]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.1 v3.0.1
authorScott Worley <scottworley@scottworley.com>
Tue, 4 Aug 2020 21:53:48 +0000 (14:53 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 4 Aug 2020 21:53:48 +0000 (14:53 -0700)
Changelog
default.nix
setup.py

index ecdc6dbb218f8851f8a66beb0594275891a0550f..3ffe9dba8123901046798afe57e036445d35f9c7 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.1] - 2020-08-04
 ### Changed
 - Make tests fast again when using recent git-cache with backoff
 
index e8b71283d38212dd4876afde1a3dce8c6894f50a..e94df964e61fae3d462f73c65568b7275f7f2d82 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.1-pre";
+    version = "3.0.1";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 381debd05a1b29f98d2e094832313d9f365144f1..76e2a2175dcb6a8d19bb82f9beb4fd30bda085f6 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.1-pre',
+    version='3.0.1',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],