]> git.scottworley.com Git - git-cache/commitdiff
Release 1.2.1 v1.2.1
authorScott Worley <scottworley@scottworley.com>
Tue, 4 Aug 2020 00:15:29 +0000 (17:15 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 4 Aug 2020 00:15:29 +0000 (17:15 -0700)
Changelog
default.nix
setup.py

index 499dd3ee7a7a490fce51d2ec626ac37a4efac506..3814943081fb4dd265cc266ca87e5f313d38621f 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.2.1] - 2020-08-03
 ### Changed
 - Build fix for old versions of mypy
 
index ce1336f36a673d20171eebe61fa6ab5de1605bf2..6377881b0a9487c289cc276d0ca91408c43799ce 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.2.1-pre";
+    version = "1.2.1";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index bdee59d5ead09150a8dc1b710a1705e4e76c6444..ad3bdd91091316374ffeab7932d3a93ea0b9c0b8 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.1-pre",
+    version="1.2.1",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )