]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.4.2
authorScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 08:02:15 +0000 (00:02 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 08:02:15 +0000 (00:02 -0800)
default.nix
setup.py

index 651c197312d8705568583576e0cc94c296ea64dc..918c9ec7c74b47bf109e209faad5f57494e6c418 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.4.1";
+    version = "1.4.2-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 3c724093cfd84b0113093abfae4b461709f3d246..ac561f8c62a54232bf0a885a2327241defe4a2db 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.4.1",
+    version="1.4.2-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )