From b1590faa718dad9dae442a1b8e6731be071489a9 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 10 Jul 2020 21:57:57 -0700 Subject: [PATCH] Release 3.0.0 --- Changelog | 4 ++++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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'], -- 2.44.1