]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.9 v3.0.9
authorScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 07:27:15 +0000 (00:27 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 07:27:15 +0000 (00:27 -0700)
Changelog
default.nix
setup.py

index a1a1fcc42233e9336373c729f2c1dd5d92b29b26..c0c066a61fee1258660f43e94e30e41f24c1f099 100644 (file)
--- 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.
 
index 0c56fe45dc43594befe8526b3a517e3d86a9c7ca..518a2dcbedb055d173892f367f63ee28e502693e 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.9-pre";
+    version = "3.0.9";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 8dc59a281621e74e37abd138dfd338d49b934ff7..61bebef70102c329a4219d3876bffc42f59b0ba0 100644 (file)
--- 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'],