]> git.scottworley.com Git - git-cache/commitdiff
Release 1.5.0 master v1.5.0
authorScott Worley <scottworley@scottworley.com>
Sat, 29 Jun 2024 06:52:23 +0000 (23:52 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 29 Jun 2024 06:52:23 +0000 (23:52 -0700)
Changelog
default.nix
setup.py

index 59085ea7b7ab9f5574544d3ad244d888c656735d..96f1a527aa1fb08b303a0890e3fcb05a1deab8bd 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.5.0] - 2024-06-28
 - Support "tag <tag>" syntax for fetching tags
 
 
index 41a0d793c509c968127b719e3517403d6e8ca5f0..40cef55fd9e1eca93290c4496af5d0d1f124474a 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.5.0-pre";
+    version = "1.5.0";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     "${checkInputsName}" = [ nix git mypy ]
index 89de0646bcaad6513d497936fb4306f01f054db2..725999853986cc6f3e27adb45c0768b5665adade 100644 (file)
--- 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",