From: Scott Worley Date: Sat, 18 Jul 2020 00:30:35 +0000 (-0700) Subject: Start on 1.2.0 X-Git-Tag: v1.2.0~2 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/b3fd1e86754e11dd196c544b44a6c8a2ad241469?hp=839f8d8d2d0815257660e29fe8caea1db3a914a8 Start on 1.2.0 --- diff --git a/default.nix b/default.nix index 0a040cf..6c57b0d 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.2.0-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..7ec5b25 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.2.0-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )