From: Scott Worley <scottworley@scottworley.com>
Date: Tue, 4 Aug 2020 21:53:48 +0000 (-0700)
Subject: Release 3.0.1
X-Git-Tag: v3.0.1
X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/927a6713ad09808dd90e931ad8108520057fd3c2

Release 3.0.1
---

diff --git a/Changelog b/Changelog
index ecdc6db..3ffe9db 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,7 @@
 ## [Unreleased]
+
+
+## [3.0.1] - 2020-08-04
 ### Changed
 - Make tests fast again when using recent git-cache with backoff
 
diff --git a/default.nix b/default.nix
index e8b7128..e94df96 100644
--- a/default.nix
+++ b/default.nix
@@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.1-pre";
+    version = "3.0.1";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
diff --git a/setup.py b/setup.py
index 381debd..76e2a21 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.1-pre',
+    version='3.0.1',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],