Skip to content

Commit

Permalink
Update changelog. Ref python/cpython#101144.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jan 27, 2023
1 parent e9b7bc3 commit 62e965b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v3.11.1
=======

* gh-101144: Honor ``encoding`` as positional parameter
to ``Path.open()`` and ``Path.read_text()``.

v3.11.0
=======

Expand Down
8 changes: 6 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@
url='https://peps.python.org/pep-{pep_number:0>4}/',
),
dict(
pattern=r'(Python #|bpo-)(?P<python>\d+)',
url='http://bugs.python.org/issue{python}',
pattern=r'(bpo-)(?P<bpo>\d+)',
url='http://bugs.python.org/issue{bpo}',
),
dict(
pattern=r'(gh-)(?P<python_gh>\d+)',
url='http://bugs.python.org/issue{python_gh}',
),
],
)
Expand Down

0 comments on commit 62e965b

Please sign in to comment.