From: Scott Worley Date: Sat, 29 Jun 2024 06:52:23 +0000 (-0700) Subject: Release 1.5.0 X-Git-Tag: v1.5.0 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/3acf0fa75512a9e1d341d6847ec1bb891d2050a5 Release 1.5.0 --- diff --git a/Changelog b/Changelog index 59085ea..96f1a52 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [1.5.0] - 2024-06-28 - Support "tag " syntax for fetching tags diff --git a/default.nix b/default.nix index 41a0d79..40cef55 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.5.0-pre"; + version = "1.5.0"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; "${checkInputsName}" = [ nix git mypy ] diff --git a/setup.py b/setup.py index 89de064..7259998 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.5.0-pre", + version="1.5.0", description="Cache git content locally", author="Scott Worley", author_email="scottworley@scottworley.com",