]> git.scottworley.com Git - git-cache/commitdiff
Start on 1.1.1
authorScott Worley <scottworley@scottworley.com>
Wed, 5 Aug 2020 08:00:49 +0000 (01:00 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 5 Aug 2020 08:00:49 +0000 (01:00 -0700)
default.nix
setup.py

index 0a040cf756b466c81673868d99ea6e98b9596356..4620a0ebf0cf6801230f09d5abe9e0bd043f9812 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.1.1-pre";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index 5af584ae222259d9c77a38a97facc7757f661b1d..fce7a83156228a2f1ed9ca53121724fb84a993ff 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.1.1-pre",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )