]> git.scottworley.com Git - git-cache/commitdiff
Release 1.4.2 v1.4.2
authorScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 09:02:24 +0000 (01:02 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 23 Nov 2022 09:02:24 +0000 (01:02 -0800)
Changelog
default.nix
setup.py

index 4f731ab9bcd20bcbac461d371c5b25efdbd6d385..045293a13cb8ad2784833de0e04d28e79d1599e0 100644 (file)
--- 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
index 9b932fb14518bd6f653300a76aa26b43e210fb2b..265b45096492e20dd95327f8722ad74ebe32e6b9 100644 (file)
@@ -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 ];
index ac561f8c62a54232bf0a885a2327241defe4a2db..e0ad3b1d76ed8d6e78804ae37618efdc99780c6d 100644 (file)
--- 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'],
 )