From: Scott Worley Date: Mon, 3 Jun 2024 09:34:32 +0000 (-0700) Subject: Release 1.4.4 X-Git-Tag: v1.4.4 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/26ea251c013f5c6e6edfe1707bb22d7bd6ce5c6d?hp=d3b8a09dab31bd579466407aa9153219016eb45b Release 1.4.4 --- diff --git a/Changelog b/Changelog index 898c79d..8075597 100644 --- 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) diff --git a/default.nix b/default.nix index 83d4c79..a33d20f 100644 --- a/default.nix +++ b/default.nix @@ -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 ] diff --git a/setup.py b/setup.py index 9d068e7..c412039 100644 --- 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",