From 78066996eaf5c603383b3a454f0fe0abbcdb12f7 Mon Sep 17 00:00:00 2001 From: staticdev Date: Mon, 24 Apr 2023 21:53:28 +0200 Subject: [PATCH] Prepare version 4.0.1 --- docs/source/release-notes/4.0.1.rst | 10 ++++++++++ docs/source/release-notes/index.rst | 1 + src/github3/__about__.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 docs/source/release-notes/4.0.1.rst diff --git a/docs/source/release-notes/4.0.1.rst b/docs/source/release-notes/4.0.1.rst new file mode 100644 index 00000000..3b506209 --- /dev/null +++ b/docs/source/release-notes/4.0.1.rst @@ -0,0 +1,10 @@ +4.0.1: 2023-04-25 +----------------- + +CI/CD +````` + +- Disable hatch strict naming for packaing (@staticdev). See also gh-1145_ + +.. _gh-1145: + https://github.com/sigmavirus24/github3.py/issues/1145 diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst index ee1d6293..61337860 100644 --- a/docs/source/release-notes/index.rst +++ b/docs/source/release-notes/index.rst @@ -10,6 +10,7 @@ here with the newest releases first. .. toctree:: 4.0.0 + 4.0.1 3.x Release Series ================== diff --git a/src/github3/__about__.py b/src/github3/__about__.py index 0dc569f8..e2101047 100644 --- a/src/github3/__about__.py +++ b/src/github3/__about__.py @@ -5,7 +5,7 @@ __author_email__ = "graffatcolmingov@gmail.com" __license__ = "Modified BSD" __copyright__ = "Copyright 2012 Ian Stapleton Cordasco" -__version__ = "4.0.0" +__version__ = "4.0.1" __version_info__ = tuple( int(i) for i in __version__.split(".") if i.isdigit() )