]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.6 v3.0.6
authorScott Worley <scottworley@scottworley.com>
Wed, 19 Jan 2022 19:28:42 +0000 (11:28 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 19 Jan 2022 19:28:42 +0000 (11:28 -0800)
Changelog
default.nix
setup.py

index a0932a9d12f60bb79311ae0b7a586ccd3ee2df9e..78de92f1ff1a20cc87460b835bf0a1720e52251c 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.6] - 2022-01-19
 ### Changed
 - Deprecate pinch.
 - Show the channel URL being fetched.
index fae46cc392e669bc6afcdd1eb0797072aa321350..f35c1524eea48f58286c55771ace59533eefd40f 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.6-pre";
+    version = "3.0.6";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 6bdc169eefa8dbc5f88d64677cd7185582479ab5..a19f143536776a507bfc1bcdb0607129843a94b4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.6-pre',
+    version='3.0.6',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],