From f0d5d9960ca182aac1201504a67154b6343a8a1b Mon Sep 17 00:00:00 2001 From: Michael Mattie Date: Sat, 24 Feb 2024 07:08:03 -0800 Subject: [PATCH] bump to version 0.3.1 --- pyproject.toml | 2 +- python.sh | 2 +- releases/Pipfile-0.3.1 | 13 +++++++++++++ 3 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 releases/Pipfile-0.3.1 diff --git a/pyproject.toml b/pyproject.toml index 6e41a44..226526d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "pastepipe" -version = "0.2.0" +version = "0.3.1" license = { file = "LICENSE" } diff --git a/python.sh b/python.sh index 15941f2..090d06e 100644 --- a/python.sh +++ b/python.sh @@ -2,6 +2,6 @@ PYTHON_VERSION="3.10:latest" VIRTUAL_PREFIX="pastepipe" -VERSION=0.2.0 +VERSION=0.3.1 EDITOR=nano diff --git a/releases/Pipfile-0.3.1 b/releases/Pipfile-0.3.1 new file mode 100644 index 0000000..1809978 --- /dev/null +++ b/releases/Pipfile-0.3.1 @@ -0,0 +1,13 @@ +[[source]] +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +requests = "*" + +[dev-packages] +build = "*" + +[requires] +python_version = "3.10"