From: Scott Worley Date: Sat, 11 Jul 2020 04:57:57 +0000 (-0700) Subject: Release 3.0.0 X-Git-Tag: v3.0.0^0 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/b1590faa718dad9dae442a1b8e6731be071489a9 Release 3.0.0 --- diff --git a/Changelog b/Changelog index 32f74a5..3b326d6 100644 --- 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 diff --git a/default.nix b/default.nix index b3fc3a5..62798c1 100644 --- a/default.nix +++ b/default.nix @@ -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 ]; diff --git a/setup.py b/setup.py index 9d10977..97dada4 100644 --- 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'],