From: Scott Worley Date: Wed, 23 Nov 2022 09:02:24 +0000 (-0800) Subject: Release 1.4.2 X-Git-Tag: v1.4.2 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/bc6c850d26ae2a7813741d80a8b7113aeed81b1d Release 1.4.2 --- diff --git a/Changelog b/Changelog index 4f731ab..045293a 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,11 @@ ## [Unreleased] +## [1.4.2] - 2022-11-23 +### Changed +- Small cleanups + + ## [1.4.1] - 2021-07-09 ### Changed - Suppress git's init.defaultBranch hints diff --git a/default.nix b/default.nix index 9b932fb..265b450 100644 --- a/default.nix +++ b/default.nix @@ -4,7 +4,7 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "git-cache"; - version = "1.4.2-pre"; + version = "1.4.2"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index ac561f8..e0ad3b1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="git_cache", - version="1.4.2-pre", + version="1.4.2", entry_points={'console_scripts': ['git-cache = git_cache:_main']}, py_modules=['git_cache'], )