]> git.scottworley.com Git - git-cache/commitdiff
Release 1.1.1 v1.1.1
authorScott Worley <scottworley@scottworley.com>
Wed, 5 Aug 2020 08:03:33 +0000 (01:03 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 5 Aug 2020 08:03:33 +0000 (01:03 -0700)
Changelog
default.nix
setup.py

index f25bd9ee873a5c272eb2bbd01113bb56cf194c32..64b33bffc3af5c26f7f061f8176ea89ce255dfc6 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.1.1] - 2020-08-05
 ### Changed
 - Build fix for old versions of mypy
 
index 4620a0ebf0cf6801230f09d5abe9e0bd043f9812..db55ae741e65d921ad23cd2aab35c948346e3a0d 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.1.1-pre";
+    version = "1.1.1";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index fce7a83156228a2f1ed9ca53121724fb84a993ff..8a84b3887fcd62590ab932588d2750dd2d29c6a4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.1.1-pre",
+    version="1.1.1",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )