]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.0 v3.0.0
authorScott Worley <scottworley@scottworley.com>
Sat, 11 Jul 2020 04:57:57 +0000 (21:57 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 11 Jul 2020 04:57:57 +0000 (21:57 -0700)
Changelog
default.nix
setup.py

index 32f74a511c4436cc01c0fdf06e1c2ace0cca2fa3..3b326d65319605f3c8c1b64b7ffe84e1a9e44435 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,7 +1,11 @@
 ## [Unreleased]
+
+
+## [3.0.0] - 2020-07-10
 ### Changed
 - Moved git cache out to a separate library
 
+
 ## [2.1.1] - 2020-07-01
 ### Changed
 - Pin faster: Skip archive comparison if git rev is unchanged
index b3fc3a544a1cba59d941578590d18c813db00533..62798c154dc5150ad2ffbe7bfa36e35d6c22f9cf 100644 (file)
@@ -19,7 +19,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.0-pre";
+    version = "3.0.0";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 9d10977c1b2e9faf3bbfd2562a46aa09ba34eb23..97dada4604cbe048dc811e7aba1acaed0741e788 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.0-pre',
+    version='3.0.0',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],