From: Scott Worley Date: Mon, 21 Jun 2021 18:17:32 +0000 (-0700) Subject: Start on 1.4.0 X-Git-Tag: v1.4.0~6 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/866f291808c96e89c86adaa63634d89a58526ec7 Start on 1.4.0 --- diff --git a/default.nix b/default.nix index 5e67b4b..527bd14 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.3.1"; + version = "1.4.0-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 3e0ca86..6bc2393 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.3.1", + version="1.4.0-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )