]> git.scottworley.com Git - git-cache/commitdiff
Release 1.1.0 v1.1.0
authorScott Worley <scottworley@scottworley.com>
Fri, 17 Jul 2020 00:15:21 +0000 (17:15 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 17 Jul 2020 00:15:21 +0000 (17:15 -0700)
Changelog
default.nix
setup.py

index 0021bf3d1bccacc809a12e42e6ac584558f13081..44b04c1984adb0cc596f18eee1810c5adbab4c34 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,10 @@
 ## [Unreleased]
 ## [Unreleased]
+
+
+## [1.1.0] - 2020-07-16
 ### Added
 - Command line interface
 
 ### Added
 - Command line interface
 
+
 ## [1.0.0] - 2020-07-10
 Initial release
 ## [1.0.0] - 2020-07-10
 Initial release
index c3515715a3b6e30a1321fa18817c501e9a6c23c6..0a040cf756b466c81673868d99ea6e98b9596356 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "git-cache";
-    version = "1.0.0";
+    version = "1.1.0";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index 8f5d1b29d004c7ee56dcd31d38ec8c3e004d6bd8..5af584ae222259d9c77a38a97facc7757f661b1d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name="git_cache",
 
 setup(
     name="git_cache",
-    version="0.0.1-pre",
+    version="1.1.0",
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )
     entry_points={'console_scripts': ['git-cache = git_cache:_main']},
     py_modules=['git_cache'],
 )