]> git.scottworley.com Git - pinch/commitdiff
Release: 1.5.1 1.5.1
authorScott Worley <scottworley@scottworley.com>
Thu, 18 Jun 2020 00:02:04 +0000 (17:02 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 18 Jun 2020 00:02:04 +0000 (17:02 -0700)
default.nix
setup.py

index f8d040a973ef80a4cf1ade67fbd8b3b0a653b237..c2c751cdcb18517e407df9ea8373f77dc06ed366 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "1.3";
+    version = "1.5.1";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index f8647e667ee7fad65b951a549460459652e1d793..b7d3a26206ab5a80672513c0c21638749fd3fee5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="pinch",
-    version="1.4",
+    version="1.5.1",
     py_modules=['pinch'],
     entry_points={"console_scripts": ["pinch = pinch:main"]},
 )