From e2478492c622511a381058c04aeeeb3186c53073 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 1 Feb 2022 17:38:05 -0800 Subject: [PATCH] Release 3.0.7 --- Changelog | 3 +++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 7d20475..cd39ea1 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [3.0.7] - 2022-02-01 ### Changed - Don't leave old channels laying around diff --git a/default.nix b/default.nix index ad9355e..eb3dac2 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.7-pre"; + version = "3.0.7"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index d52e791..ac3c305 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.7-pre', + version='3.0.7', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'], -- 2.44.1