]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.7 v3.0.7
authorScott Worley <scottworley@scottworley.com>
Wed, 2 Feb 2022 01:38:05 +0000 (17:38 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 2 Feb 2022 01:38:05 +0000 (17:38 -0800)
Changelog
default.nix
setup.py

index 7d204758fbf26da08c2f4f88b95b41e085c4fdb8..cd39ea18cfd73856989992f2ed7f97cfcc6d80e1 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.7] - 2022-02-01
 ### Changed
 - Don't leave old channels laying around
 
index ad9355e9aed50a119d18a669eb42e3665533404f..eb3dac28153e6f7cef5b181a798150c328e2c023 100644 (file)
@@ -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 ];
index d52e791ef4add795077cad24ac472b642c9dc511..ac3c305fa553889d73f9dcf60dc77ceb078f9f84 100644 (file)
--- 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'],