From: Scott Worley Date: Sat, 29 Jun 2024 06:29:57 +0000 (-0700) Subject: Start on 1.5.0 X-Git-Tag: v1.5.0~2 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/50c43b5553643d2962bcde3d9ce5d5c78d6e3a0a?hp=26ea251c013f5c6e6edfe1707bb22d7bd6ce5c6d Start on 1.5.0 --- diff --git a/default.nix b/default.nix index a33d20f..41a0d79 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"; + version = "1.5.0-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; "${checkInputsName}" = [ nix git mypy ] diff --git a/setup.py b/setup.py index c412039..89de064 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.4.4", + version="1.5.0-pre", description="Cache git content locally", author="Scott Worley", author_email="scottworley@scottworley.com",