]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.2.1
authorScott Worley <scottworley@scottworley.com>
Tue, 4 Aug 2020 00:10:29 +0000 (17:10 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 4 Aug 2020 00:10:29 +0000 (17:10 -0700)
default.nix
setup.py

index 4c715e91eabf30a1a1e2b663411e235e31b2fedb..ce1336f36a673d20171eebe61fa6ab5de1605bf2 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.0";
+    version = "1.2.1-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 6b0d61f4bc3e104a31458bb19c11e8b35f62d097..bdee59d5ead09150a8dc1b710a1705e4e76c6444 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.0",
+    version="1.2.1-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )