From 7bd6ecd224d570090412d45c393e9ce7f9df38ee Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 27 Jan 2023 14:58:49 -0500 Subject: [PATCH] Update changelog. Ref python/cpython#101144. --- CHANGES.rst | 6 ++++++ docs/conf.py | 8 ++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 95c553f..72a23eb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +v3.12.0 +======= + +* gh-101144: Honor ``encoding`` as positional parameter + to ``Path.open()`` and ``Path.read_text()``. + v3.11.0 ======= diff --git a/docs/conf.py b/docs/conf.py index 51e860b..b8c892d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,8 +25,12 @@ url='https://peps.python.org/pep-{pep_number:0>4}/', ), dict( - pattern=r'(Python #|bpo-)(?P\d+)', - url='http://bugs.python.org/issue{python}', + pattern=r'(bpo-)(?P\d+)', + url='http://bugs.python.org/issue{bpo}', + ), + dict( + pattern=r'(gh-)(?P\d+)', + url='http://bugs.python.org/issue{python_gh}', ), ], )