From: Scott Worley Date: Tue, 4 Aug 2020 00:10:29 +0000 (-0700) Subject: Start on 1.2.1 X-Git-Tag: v1.2.1~2 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/26c6a36bb845c7cfd7ea2d7a0ec56eec7cc20d28?hp=48122142b481e07a2600259ea8985cdab927de03 Start on 1.2.1 --- diff --git a/default.nix b/default.nix index 4c715e9..ce1336f 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.2.0"; + version = "1.2.1-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 6b0d61f..bdee59d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.2.0", + version="1.2.1-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )