]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.2.0
authorScott Worley <scottworley@scottworley.com>
Sat, 18 Jul 2020 00:30:35 +0000 (17:30 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 18 Jul 2020 00:31:06 +0000 (17:31 -0700)
default.nix
setup.py

index 0a040cf756b466c81673868d99ea6e98b9596356..6c57b0d389bd9f9d1ae2c26ee2232b0ec5851078 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.1.0";
+    version = "1.2.0-pre";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index 5af584ae222259d9c77a38a97facc7757f661b1d..7ec5b25ed4d09ef4b23e0aecfe1d2d5b06f7162f 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.1.0",
+    version="1.2.0-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )