]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.8 v3.0.8
authorScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 06:56:00 +0000 (23:56 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 06:56:00 +0000 (23:56 -0700)
Changelog
default.nix
setup.py

index 8b09b5606880f0b4a4a9a10eb31b7d8db673b5e3..267914d1591af30668f1281e63652bdd34d7d16a 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.8] - 2022-04-15
 ### Fixed
 - Fix tests after restricted mode support update
 - Fix git-cache fetch URL
index 2f0a68920efe08c37bb1ecd6b4332705e551766d..5608be6b5e7a58d2825e065e21c4df7f556c1900 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.8-pre";
+    version = "3.0.8";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index ceb77062691a4a43147ab40b4ed61396d9802f0d..6ed20b626000680289289075e613af9cf850ca89 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.8-pre',
+    version='3.0.8',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],