From: Scott Worley Date: Wed, 19 Jan 2022 19:28:42 +0000 (-0800) Subject: Release 3.0.6 X-Git-Tag: v3.0.6 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/9c3f57889fca4f7a089eed038bd54d27fe7a30e7 Release 3.0.6 --- diff --git a/Changelog b/Changelog index a0932a9..78de92f 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [3.0.6] - 2022-01-19 ### Changed - Deprecate pinch. - Show the channel URL being fetched. diff --git a/default.nix b/default.nix index fae46cc..f35c152 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git , autopep8, makeWrapper, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.6-pre"; + version = "3.0.6"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index 6bdc169..a19f143 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.6-pre', + version='3.0.6', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],