From: Scott Worley <scottworley@scottworley.com>
Date: Fri, 26 Jan 2024 17:33:10 +0000 (-0800)
Subject: Start on 1.0.1
X-Git-Tag: v1.0.1~2
X-Git-Url: http://git.scottworley.com/hellowebpy/commitdiff_plain/fe7b4edd757c74e9bfc8ba9168505be9cf2bc2ab

Start on 1.0.1
---

diff --git a/default.nix b/default.nix
index c256aea..a223caa 100644
--- a/default.nix
+++ b/default.nix
@@ -4,7 +4,7 @@ pkgs.python3Packages.callPackage
 ({ autopep8, buildPythonPackage, curl, lib, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "hellowebpy";
-    version = "1.0.0";
+    version = "1.0.1-pre";
     src = lib.cleanSource ./.;
     PIP_DISABLE_PIP_VERSION_CHECK = 1;
     checkInputs = [ curl mypy ] ++ lib.optionals lint [ autopep8 pylint ];
diff --git a/setup.py b/setup.py
index 0bce1ad..f5b2efe 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='hellowebpy',
-    version='1.0.0',
+    version='1.0.1-pre',
     description="A minimal 'hello world' python web server.",
     author="Scott Worley",
     author_email="scottworley@scottworley.com",