From: Scott Worley Date: Thu, 25 May 2023 01:35:03 +0000 (-0700) Subject: Release 1.4.3 X-Git-Tag: v1.4.3 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/05533b40f938136025a54522373f948cedbd4753?hp=ce9660cb142544ff3612bb2e39e2d2860a72dc5c Release 1.4.3 --- diff --git a/Changelog b/Changelog index 12a866b..8569763 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [1.4.3] - 2023-05-24 ### Changed - Specify license - Adapt to nixpkgs nativeCheckInputs change diff --git a/default.nix b/default.nix index d233700..a09bd68 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.2"; + version = "1.4.3"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; "${checkInputsName}" = [ nix git mypy ] diff --git a/setup.py b/setup.py index 434f4a7..101451e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.4.2", + version="1.4.3", description="Cache git content locally", author="Scott Worley", author_email="scottworley@scottworley.com",