From 86666a85eaeea98a38e0cbae449ddce1a8866225 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 16 Apr 2022 00:27:15 -0700 Subject: [PATCH] Release 3.0.9 --- Changelog | 3 +++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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'], -- 2.44.1