]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.4.0
authorScott Worley <scottworley@scottworley.com>
Mon, 21 Jun 2021 18:17:32 +0000 (11:17 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 21 Jun 2021 18:17:32 +0000 (11:17 -0700)
default.nix
setup.py

index 5e67b4bd04e4f20b4c9e1ede630f2e05bfae46d1..527bd14633a33bd3a49d3b64d2cdc022dbebca28 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.1";
+    version = "1.4.0-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 3e0ca86dfcc476075fea5ee07c75f033211eaec6..6bc239365526bb9114ada92483f3cb42af35017c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.3.1",
+    version="1.4.0-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )