From 86177fdfb5367ed77a71ad50d3c419f41dad62dd Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Fri, 26 Jan 2024 09:35:33 -0800 Subject: [PATCH] Release 1.0.1 --- default.nix | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 8bc58a3..3b3e7af 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.1-pre"; + version = "1.0.1"; src = lib.cleanSource ./.; PIP_DISABLE_PIP_VERSION_CHECK = 1; nativeCheckInputs = [ curl mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index f5b2efe..74740da 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='hellowebpy', - version='1.0.1-pre', + version='1.0.1', description="A minimal 'hello world' python web server.", author="Scott Worley", author_email="scottworley@scottworley.com", -- 2.44.1