From: Scott Worley <scottworley@scottworley.com>
Date: Fri, 17 Jul 2020 00:15:21 +0000 (-0700)
Subject: Release 1.1.0
X-Git-Tag: v1.1.0^0
X-Git-Url: http://git.scottworley.com/git-cache/commitdiff_plain/839f8d8d2d0815257660e29fe8caea1db3a914a8?ds=inline;hp=347be7cf3626da2bee6487ef25b2d9dc66988a43

Release 1.1.0
---

diff --git a/Changelog b/Changelog
index 0021bf3..44b04c1 100644
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,10 @@
 ## [Unreleased]
+
+
+## [1.1.0] - 2020-07-16
 ### Added
 - Command line interface
 
+
 ## [1.0.0] - 2020-07-10
 Initial release
diff --git a/default.nix b/default.nix
index c351571..0a040cf 100644
--- a/default.nix
+++ b/default.nix
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ 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;
diff --git a/setup.py b/setup.py
index 8f5d1b2..5af584a 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 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'],
 )