From: Scott Worley Date: Wed, 26 Aug 2020 04:52:12 +0000 (-0700) Subject: Start on 1.2.3 X-Git-Tag: v1.2.3~2 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/8b40ac7a2ce64cbc26e46584827a95112b5e2239 Start on 1.2.3 --- diff --git a/default.nix b/default.nix index dd2b11b..6f7e8c5 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.2"; + version = "1.2.3-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index faf1bb3..da870f0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.2.2", + version="1.2.3-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )