From: Scott Worley Date: Wed, 23 Nov 2022 09:18:27 +0000 (-0800) Subject: Release 3.0.10 X-Git-Tag: v3.0.10 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/df45b0111f016d06c4951c6df91359b6b9a15589?hp=75076e7da897635c486c47b1c741190e5e54656d Release 3.0.10 --- diff --git a/Changelog b/Changelog index c0c066a..dab8eb6 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,11 @@ ## [Unreleased] +## [3.0.10] - 2022-11-23 +### Changed +- Small cleanups + + ## [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 31a6398..7744281 100644 --- a/default.nix +++ b/default.nix @@ -21,7 +21,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git , autopep8, makeWrapper, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.10-pre"; + version = "3.0.10"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index 7d28c68..57fc3b9 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.10-pre', + version='3.0.10', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],