]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.2.2
authorScott Worley <scottworley@scottworley.com>
Tue, 25 Aug 2020 22:53:03 +0000 (15:53 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 25 Aug 2020 23:20:29 +0000 (16:20 -0700)
default.nix
setup.py

index 6377881b0a9487c289cc276d0ca91408c43799ce..ee0f2683dab5b19bb6eeafde8c564356212ead35 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.2.1";
+    version = "1.2.2-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index ad3bdd91091316374ffeab7932d3a93ea0b9c0b8..2e0b2b91bce20055d9df05c0c335f660b0d7c3a3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.1",
+    version="1.2.2-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )