From: Scott Worley Date: Thu, 18 Jun 2020 08:14:18 +0000 (-0700) Subject: Start on 2.1.0 X-Git-Tag: 2.1.0~4 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/9ee71b8de80b57ed5851203b581ac09b3792d2c8 Start on 2.1.0 --- diff --git a/default.nix b/default.nix index a50b21e..9e2a5f1 100644 --- a/default.nix +++ b/default.nix @@ -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; diff --git a/setup.py b/setup.py index a201941..342ed97 100644 --- 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"]}, )