]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.3.0
authorChuck <chuck@intelligence.org>
Mon, 19 Apr 2021 22:36:29 +0000 (15:36 -0700)
committerChuck <chuck@intelligence.org>
Mon, 19 Apr 2021 22:36:29 +0000 (15:36 -0700)
default.nix
setup.py

index 7c0167eca3a567aacb397601aa80a20611d97dd4..754246e5acbe14a7130a69d9cd7403a397977f58 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.3";
+    version = "1.3.0-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index a08647abc853e42f5ca2a5629fdc14e3538e5339..8f1f3bfea1506ea7990aae2ab402c8b9fcce06da 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.3",
+    version="1.3.0-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )