From ba74933e2ecbfbcd0f91f3e4ac89314b965a47b8 Mon Sep 17 00:00:00 2001 From: "Henry H. Andrews" Date: Mon, 22 May 2023 15:42:38 -0700 Subject: [PATCH 1/3] Add release notes for 2.0.1 --- docs/source/release-notes/2.0.1.rst | 25 +++++++++++++++++++++++++ docs/source/release-notes/index.rst | 1 + 2 files changed, 26 insertions(+) create mode 100644 docs/source/release-notes/2.0.1.rst diff --git a/docs/source/release-notes/2.0.1.rst b/docs/source/release-notes/2.0.1.rst new file mode 100644 index 0000000..d93b69f --- /dev/null +++ b/docs/source/release-notes/2.0.1.rst @@ -0,0 +1,25 @@ +2.0.1 - 2022-06-01 +------------------ + +- Fix bug where the non-deprecated method ``resolve_with()`` was + calling the deprecated method ``.is_valid()`` and causing warnings + to be emitted - `bug 86`_ + +- Fix bug where an empty path was not being matched by the PATH_EMPTY + regex - `bug 88`_ + +- Fix bug where a newline character embedded in a fragment would + cause regex parsing to halt - `bug 99` + +- Fix bug where the ':' between the host and port in the authority + could be improperly omitted - `bug 102`_ + +.. links below here +.. _bug 86: + https://github.com/python-hyper/rfc3986/issues/86 +.. _bug 88: + https://github.com/python-hyper/rfc3986/issues/88 +.. _bug 99: + https://github.com/python-hyper/rfc3986/issues/102 +.. _bug 102: + https://github.com/python-hyper/rfc3986/issues/102 diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst index b1f1c30..06ed84b 100644 --- a/docs/source/release-notes/index.rst +++ b/docs/source/release-notes/index.rst @@ -11,6 +11,7 @@ here with the newest releases first. .. toctree:: unreleased + 2.0.1 2.0.0 1.x Release Series From a25c060b64b109a9b8a9388b6f5a142efa7b3456 Mon Sep 17 00:00:00 2001 From: "Henry H. Andrews" Date: Wed, 19 Jul 2023 14:43:36 -0700 Subject: [PATCH 2/3] Update sphinx version and config intersphinx-mapping needed adjustment, plus there is some sort of incompatibility between sphinx 7.0.0 and sphinx-rtd-theme, so pin sphinx below that point. Allegedly it is fixed in more recent sphinx-rtd-theme installations, but we do not pin that package and it still breaks, so punting that to be solved some other time. --- docs/source/conf.py | 4 ++-- docs/source/requirements.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f112f59..5ee2603 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -166,5 +166,5 @@ ] -# Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {"https://docs.python.org/": None} +# Configuration for intersphinx: refer to the Python standard library. +intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} diff --git a/docs/source/requirements.txt b/docs/source/requirements.txt index 89c732e..e69f482 100644 --- a/docs/source/requirements.txt +++ b/docs/source/requirements.txt @@ -1,3 +1,3 @@ -Sphinx>=1.5.3 +Sphinx<7.0.0 sphinx-prompt>=1.0.0 sphinx_rtd_theme From b4c0e0540c7a48c6e13f8931f8587e4a68ef4a7d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 26 Dec 2023 13:07:22 +0000 Subject: [PATCH 3/3] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index e30954f..5ee2603 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -167,4 +167,4 @@ # Configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} \ No newline at end of file +intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}