Skip to content

Commit

Permalink
v6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi committed Jan 22, 2025
1 parent 0be70d1 commit ab477ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Release History
===============

dev
---
6.1.0 (2025-01-22)
------------------

**API Changes (Backward Incompatible)**

Expand All @@ -16,8 +16,9 @@ dev
- Support for Python 3.11 has been added.
- Support for Python 3.12 has been added.
- Support for Python 3.13 has been added.
- Improved type hints.
- Updated packaging and testing infrastructure.
- Code cleanup and linting.
- Improved type hints.

6.0.1 (2021-04-17)
------------------
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,9 @@ commands = [
]

[tool.tox.env.publish]
base_python = "{[tool.tox.env.packaging]base_python}"
deps = "{[tool.tox.env.packaging]deps}"
allowlist_externals = "{[tool.tox.env.packaging]allowlist_externals}"
base_python = ["python39"]
dependency_groups = ["packaging"]
allowlist_externals = ["twine"]
commands = [
"{[testenv:packaging]commands}",
["twine", "upload", "dist/*"],
]
2 changes: 1 addition & 1 deletion src/hyperframe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""
from __future__ import annotations

__version__ = "6.1.0+dev"
__version__ = "6.1.0"

0 comments on commit ab477ba

Please sign in to comment.