From: Scott Worley Date: Wed, 23 Nov 2022 08:02:15 +0000 (-0800) Subject: Start on 1.4.2 X-Git-Tag: v1.4.2~6 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/98324ff8d2f79d7a30f2b2aa9a06e285ce8d926c?ds=sidebyside;hp=c143afb995bcc31aa3720647aa7d641d4e171d53 Start on 1.4.2 --- diff --git a/default.nix b/default.nix index 651c197..918c9ec 100644 --- a/default.nix +++ b/default.nix @@ -22,7 +22,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "git-cache"; - version = "1.4.1"; + version = "1.4.2-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 3c72409..ac561f8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.4.1", + version="1.4.2-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )