]> git.scottworley.com Git - pinch/commitdiff
Start on 2.1.0
authorScott Worley <scottworley@scottworley.com>
Thu, 18 Jun 2020 08:14:18 +0000 (01:14 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 18 Jun 2020 08:14:18 +0000 (01:14 -0700)
default.nix
setup.py

index a50b21e2602e5a2fe5db47a4c6b5a61e9beb495c..9e2a5f14706c3f924d9e4128194be1df6d458fec 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "2.0.0";
+    version = "2.1.0-pre";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index a201941b01d94d6c57eaf13a178fbdc439533e38..342ed977d208a1ba7ae62d3095eb65d108e3df73 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="pinch",
-    version="2.0.0",
+    version="2.1.0-pre",
     py_modules=['pinch'],
     entry_points={"console_scripts": ["pinch = pinch:main"]},
 )