From: Scott Worley Date: Sat, 16 Apr 2022 07:27:15 +0000 (-0700) Subject: Release 3.0.9 X-Git-Tag: v3.0.9 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/refs/tags/v3.0.9 Release 3.0.9 --- diff --git a/Changelog b/Changelog index a1a1fcc..c0c066a 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [3.0.9] - 2022-04-16 ### Fixed - Really fix tests after restricted mode support update, whether or not the user has channels. diff --git a/default.nix b/default.nix index 0c56fe4..518a2dc 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.9-pre"; + version = "3.0.9"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index 8dc59a2..61bebef 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.9-pre', + version='3.0.9', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],