]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.6
authorScott Worley <scottworley@scottworley.com>
Fri, 14 Jan 2022 00:05:27 +0000 (16:05 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 14 Jan 2022 00:05:27 +0000 (16:05 -0800)
default.nix
setup.py

index 920b1086d2559741c00d9a5f0b6275df9feda8eb..3c3f9ca61bdc1698b7d3a89624754b9293f5c75b 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";
+    version = "3.0.6-pre";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 4611bb57a6910a4b5eb2130be57b59893e29e469..6bdc169eefa8dbc5f88d64677cd7185582479ab5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.5',
+    version='3.0.6-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],