From: Scott Worley Date: Sat, 16 Apr 2022 06:56:00 +0000 (-0700) Subject: Release 3.0.8 X-Git-Tag: v3.0.8 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/ed0517bb28862e635f8526d4c08ef1e5e808d37d Release 3.0.8 --- diff --git a/Changelog b/Changelog index 8b09b56..267914d 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [3.0.8] - 2022-04-15 ### Fixed - Fix tests after restricted mode support update - Fix git-cache fetch URL diff --git a/default.nix b/default.nix index 2f0a689..5608be6 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.8-pre"; + version = "3.0.8"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index ceb7706..6ed20b6 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.8-pre', + version='3.0.8', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],