From: Scott Worley Date: Wed, 5 Aug 2020 08:00:49 +0000 (-0700) Subject: Start on 1.1.1 X-Git-Tag: v1.1.1~2 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/8733638171d4a6908dd4d3e2fe9d0f0a08e0d6a5 Start on 1.1.1 --- diff --git a/default.nix b/default.nix index 0a040cf..4620a0e 100644 --- a/default.nix +++ b/default.nix @@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "git-cache"; - version = "1.1.0"; + version = "1.1.1-pre"; src = lib.cleanSource ./.; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; doCheck = true; diff --git a/setup.py b/setup.py index 5af584a..fce7a83 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.1.0", + version="1.1.1-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )