]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.2.3
authorScott Worley <scottworley@scottworley.com>
Wed, 26 Aug 2020 04:52:12 +0000 (21:52 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 26 Aug 2020 04:52:12 +0000 (21:52 -0700)
default.nix
setup.py

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