From dc8e913eb5787c5d85038243b53cc4ba80b88fa5 Mon Sep 17 00:00:00 2001
From: Scott Worley <scottworley@scottworley.com>
Date: Fri, 15 Apr 2022 23:51:34 -0700
Subject: [PATCH] Start on 3.0.8

---
 default.nix | 2 +-
 setup.py    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/default.nix b/default.nix
index eb3dac2..a8f4de6 100644
--- a/default.nix
+++ b/default.nix
@@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git
   , autopep8, makeWrapper, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.7";
+    version = "3.0.8-pre";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
diff --git a/setup.py b/setup.py
index ac3c305..ceb7706 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.7',
+    version='3.0.8-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],
-- 
2.47.2