]> git.scottworley.com Git - pinch/commitdiff
Release 3.0.5 v3.0.5
authorScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 22:36:43 +0000 (15:36 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 23:19:12 +0000 (16:19 -0700)
Changelog
default.nix
setup.py

index 0f0dc747be40593c21c95847121eb951fcb01366..5724f4b6b2ce8b2f7938b462b7d5851b4d56cc84 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.5] - 2021-07-09
 ### Changed
 - Show filename being hashed.  Helps find nix store corruption.
 
index c69c03af062693971319cf3bab0ff39650088324..920b1086d2559741c00d9a5f0b6275df9feda8eb 100644 (file)
@@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git
   , autopep8, makeWrapper, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.5-pre";
+    version = "3.0.5";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 7dff4ee6d74f123b42e09eed973a4ec17c291ad8..4611bb57a6910a4b5eb2130be57b59893e29e469 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.5-pre',
+    version='3.0.5',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],