]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.4.1
authorScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 22:54:11 +0000 (15:54 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 22:54:11 +0000 (15:54 -0700)
default.nix
setup.py

index eda4152c4c9822ccc953b6c964e25290e60adfb5..049896a2325de6178a087277b79356da79b22264 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.0";
+    version = "1.4.1-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 180842cbadc7c85d737c574bf2da1257777e6ca7..57701cd278bb92cb89f72e2bf3cfa26a7f9c9b22 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.4.0",
+    version="1.4.1-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )