]> git.scottworley.com Git - git-cache/commitdiff
Release 1.3.1 v1.3.1
authorScott Worley <scottworley@scottworley.com>
Tue, 8 Jun 2021 06:18:27 +0000 (23:18 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 8 Jun 2021 06:18:27 +0000 (23:18 -0700)
Changelog
default.nix
setup.py

index 77b3265866879edc13e1961c9cfd2b36da31982b..1f6a1bedef8fc6cb533b8647c5dd02fe91084298 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.3.1] - 2021-06-07
 ### Changed
 - Fixed a bug in the is-fetch-needed logic: Sometimes a fetch is needed to
 move the branch heads even if the sought rev is already present (eg: was
index 9e65856c6b95f53bdceb1c563ef5e80853ae635d..5e67b4bd04e4f20b4c9e1ede630f2e05bfae46d1 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.3.1-pre";
+    version = "1.3.1";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 8ae76ba10e0a994b3ef8ebc0e89488f5a9eb4f38..3e0ca86dfcc476075fea5ee07c75f033211eaec6 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.3.1-pre",
+    version="1.3.1",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )