]> git.scottworley.com Git - git-cache/commitdiff
Release 1.4.1 v1.4.1
authorScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 23:02:41 +0000 (16:02 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 23:02:41 +0000 (16:02 -0700)
Changelog
default.nix
setup.py

index ca29a36ee396f8bd92f7015a7c6f23c922388cc7..4f731ab9bcd20bcbac461d371c5b25efdbd6d385 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.4.1] - 2021-07-09
 ### Changed
 - Suppress git's init.defaultBranch hints
 
index 049896a2325de6178a087277b79356da79b22264..651c197312d8705568583576e0cc94c296ea64dc 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.1-pre";
+    version = "1.4.1";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 57701cd278bb92cb89f72e2bf3cfa26a7f9c9b22..3c724093cfd84b0113093abfae4b461709f3d246 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.4.1-pre",
+    version="1.4.1",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )