Skip to content

Commit ab477ba

Browse files
committedJan 22, 2025·
v6.1.0
1 parent 0be70d1 commit ab477ba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
 

‎CHANGELOG.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Release History
22
===============
33

4-
dev
5-
---
4+
6.1.0 (2025-01-22)
5+
------------------
66

77
**API Changes (Backward Incompatible)**
88

@@ -16,8 +16,9 @@ dev
1616
- Support for Python 3.11 has been added.
1717
- Support for Python 3.12 has been added.
1818
- Support for Python 3.13 has been added.
19-
- Improved type hints.
2019
- Updated packaging and testing infrastructure.
20+
- Code cleanup and linting.
21+
- Improved type hints.
2122

2223
6.0.1 (2021-04-17)
2324
------------------

‎pyproject.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,9 @@ commands = [
203203
]
204204

205205
[tool.tox.env.publish]
206-
base_python = "{[tool.tox.env.packaging]base_python}"
207-
deps = "{[tool.tox.env.packaging]deps}"
208-
allowlist_externals = "{[tool.tox.env.packaging]allowlist_externals}"
206+
base_python = ["python39"]
207+
dependency_groups = ["packaging"]
208+
allowlist_externals = ["twine"]
209209
commands = [
210-
"{[testenv:packaging]commands}",
211210
["twine", "upload", "dist/*"],
212211
]

‎src/hyperframe/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""
44
from __future__ import annotations
55

6-
__version__ = "6.1.0+dev"
6+
__version__ = "6.1.0"

0 commit comments

Comments
 (0)
Please sign in to comment.