]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.3.1
authorScott Worley <scottworley@scottworley.com>
Tue, 8 Jun 2021 05:34:44 +0000 (22:34 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 8 Jun 2021 05:34:44 +0000 (22:34 -0700)
default.nix
setup.py

index 67df11d5625453914507f65f8abb617fa32d9fa5..9e65856c6b95f53bdceb1c563ef5e80853ae635d 100644 (file)
@@ -22,7 +22,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.3.0";
+    version = "1.3.1-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index ae220392bd0f3fed0f0ae7c901495966397d8032..8ae76ba10e0a994b3ef8ebc0e89488f5a9eb4f38 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.3.0",
+    version="1.3.1-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )