]> git.scottworley.com Git - git-cache/commitdiff
Release 1.4.0 v1.4.0
authorScott Worley <scottworley@scottworley.com>
Tue, 22 Jun 2021 00:35:47 +0000 (17:35 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 22 Jun 2021 01:42:13 +0000 (18:42 -0700)
Changelog
default.nix
setup.py

index 6ee741a57c4e5d69925366683de11611e9d1318f..e21bfc16f680a19b47b195228aea59a8a837a4e4 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.4.0] - 2021-06-21
 ### Changed
 - Refuse force-push updates even if XDG_CACHE_HOME is cleared
 
index 527bd14633a33bd3a49d3b64d2cdc022dbebca28..eda4152c4c9822ccc953b6c964e25290e60adfb5 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.4.0-pre";
+    version = "1.4.0";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 6bc239365526bb9114ada92483f3cb42af35017c..180842cbadc7c85d737c574bf2da1257777e6ca7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.4.0-pre",
+    version="1.4.0",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )