]> git.scottworley.com Git - git-cache/commitdiff
Release 1.2.0 v1.2.0
authorScott Worley <scottworley@scottworley.com>
Sat, 18 Jul 2020 00:32:11 +0000 (17:32 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 18 Jul 2020 00:32:11 +0000 (17:32 -0700)
Changelog
default.nix
setup.py

index b5ae99ce2a859121af9744329e94baff5f67b7cc..647ae1cd5198a016d4b7c0da5c87fe49fa79ba56 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.2.0] - 2020-07-17
 ### Added
 - Retry fetch with backoff
 
index 6ac06fa4b6ee835eac286d273919fffc75493c83..4c715e91eabf30a1a1e2b663411e235e31b2fedb 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-pre";
+    version = "1.2.0";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 7ec5b25ed4d09ef4b23e0aecfe1d2d5b06f7162f..6b0d61f4bc3e104a31458bb19c11e8b35f62d097 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.0-pre",
+    version="1.2.0",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )