Skip to content

Commit 718e7a1

Browse files
committed
Increase SUPPORTED_REPOSITORY_VERSION to 1.3
1 parent a357d83 commit 718e7a1

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.6.1 (in development)
2+
-----------------------
3+
- `SUPPORTED_REPOSITORY_VERSION` increased to `"1.3"` for compatibility with
4+
PEP 740
5+
16
v1.6.0 (2024-07-18)
27
-------------------
38
- Drop support for Python 3.7

docs/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Changelog
44
=========
55

6+
v1.6.1 (in development)
7+
-----------------------
8+
- `SUPPORTED_REPOSITORY_VERSION` increased to ``"1.3"`` for compatibility with
9+
:pep:`740`
10+
11+
612
v1.6.0 (2024-07-18)
713
-------------------
814
- Drop support for Python 3.7

src/pypi_simple/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
for more information.
1515
"""
1616

17-
__version__ = "1.6.0"
17+
__version__ = "1.6.1.dev1"
1818
__author__ = "John Thorvald Wodder II"
1919
__author_email__ = "pypi-simple@varonathe.org"
2020
__license__ = "MIT"
@@ -24,7 +24,7 @@
2424
PYPI_SIMPLE_ENDPOINT: str = "https://pypi.org/simple/"
2525

2626
#: The maximum supported simple repository version (See :pep:`629`)
27-
SUPPORTED_REPOSITORY_VERSION: str = "1.2"
27+
SUPPORTED_REPOSITORY_VERSION: str = "1.3"
2828

2929
#: :mailheader:`Accept` header value for accepting either the HTML or JSON
3030
#: serialization without a preference

0 commit comments

Comments
 (0)