From: Chuck Date: Mon, 19 Apr 2021 22:40:22 +0000 (-0700) Subject: Version 1.3.0 X-Git-Tag: v1.3.0 X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/626e7072cf8ced5481706013462e81a4970cf4dc Version 1.3.0 --- diff --git a/Changelog b/Changelog index f81136a..3246263 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,7 @@ ## [Unreleased] + + +## [1.3.0] - 2021-04-19 ### Added - "overlay" and "overlays" flake outputs diff --git a/default.nix b/default.nix index 754246e..67df11d 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.3.0-pre"; + version = "1.3.0"; src = lib.cleanSource ./.; propagatedBuildInputs = [ backoff ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 8f1f3bf..ae22039 100644 --- 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'], )