]> git.scottworley.com Git - git-cache/commitdiff
Release 1.4.4 v1.4.4
authorScott Worley <scottworley@scottworley.com>
Mon, 3 Jun 2024 09:34:32 +0000 (02:34 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 3 Jun 2024 09:34:32 +0000 (02:34 -0700)
Changelog
default.nix
setup.py

index 898c79db3e0d37ba2f9c5e104dac2b944d69a6b5..8075597682544ebc640fa692fecd7e049e1a3921 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.4.4] - 2024-06-03
 - Use a specific Exception type
 - Fix git-precommit-hook environment (git commit -a works now)
 
index 83d4c799b2c39b9c23ad1ea26a9278a76dac1e80..a33d20ffc9f5eaeed7a3dc1196012df1d7266d2e 100644 (file)
@@ -9,7 +9,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.4.4-pre";
+    version = "1.4.4";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     "${checkInputsName}" = [ nix git mypy ]
index 9d068e7f0c4bb0ae7a36487447bbd3154e98c9f9..c412039af19e569798f62ace62630a228ae9e618 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.4.4-pre",
+    version="1.4.4",
     description="Cache git content locally",
     author="Scott Worley",
     author_email="scottworley@scottworley.com",