From 26ea251c013f5c6e6edfe1707bb22d7bd6ce5c6d Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Mon, 3 Jun 2024 02:34:32 -0700 Subject: [PATCH] Release 1.4.4 --- Changelog | 3 +++ default.nix | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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", -- 2.44.1