]> git.scottworley.com Git - git-cache/commitdiff
Version 1.3.0 v1.3.0
authorChuck <chuck@intelligence.org>
Mon, 19 Apr 2021 22:40:22 +0000 (15:40 -0700)
committerChuck <chuck@intelligence.org>
Mon, 19 Apr 2021 22:42:50 +0000 (15:42 -0700)
Changelog
default.nix
setup.py

index f81136aa1b066a9ca0a38e1fc083e85affa4d471..3246263874844312a79dbe233d5988fc70932021 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.3.0] - 2021-04-19
 ### Added
 - "overlay" and "overlays" flake outputs
 
index 754246e5acbe14a7130a69d9cd7403a397977f58..67df11d5625453914507f65f8abb617fa32d9fa5 100644 (file)
@@ -22,7 +22,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, backoff, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.3.0-pre";
+    version = "1.3.0";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 8f1f3bfea1506ea7990aae2ab402c8b9fcce06da..ae220392bd0f3fed0f0ae7c901495966397d8032 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.3.0-pre",
+    version="1.3.0",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )