From 98324ff8d2f79d7a30f2b2aa9a06e285ce8d926c Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Wed, 23 Nov 2022 00:02:15 -0800 Subject: [PATCH] Start on 1.4.2 --- default.nix | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 651c197..918c9ec 100644 --- a/default.nix +++ b/default.nix @@ -22,7 +22,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "git-cache"; - version = "1.4.1"; + version = "1.4.2-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 3c72409..ac561f8 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.4.1", + version="1.4.2-pre", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], ) -- 2.44.1