]> git.scottworley.com Git - git-cache/commitdiff
Release 1.2.2 v1.2.2
authorScott Worley <scottworley@scottworley.com>
Tue, 25 Aug 2020 23:23:50 +0000 (16:23 -0700)
committerScott Worley <scottworley@scottworley.com>
Tue, 25 Aug 2020 23:23:50 +0000 (16:23 -0700)
Changelog
default.nix
setup.py

index fb37a7ba047cf7ba967c50c8c7f391bb69db92a5..52b5a6f881727c4fd6aa01e3ae56635ad7db845b 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [1.2.2] - 2020-08-25
 ### Added
 - Flake support
 
index ee0f2683dab5b19bb6eeafde8c564356212ead35..dd2b11bcc510e801588ee52613784e7e3c93eb33 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.2-pre";
+    version = "1.2.2";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ backoff ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 2e0b2b91bce20055d9df05c0c335f660b0d7c3a3..faf1bb3e2f8a36d0aeeca4d617aa51ef4634fc00 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
-    version="1.2.2-pre",
+    version="1.2.2",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )