Skip to content

Commit dacd614

Browse files
committed
v4.2.0
1 parent 0b98b24 commit dacd614

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

CHANGELOG.rst

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

4-
dev
5-
---
4+
4.2.0 (2025-02-01)
5+
------------------
66

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

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ commands = [
225225
]
226226

227227
[tool.tox.env.publish]
228-
base_python = "{[tool.tox.env.packaging]base_python}"
229-
deps = "{[tool.tox.env.packaging]deps}"
230-
allowlist_externals = "{[tool.tox.env.packaging]allowlist_externals}"
228+
base_python = ["python39"]
229+
dependency_groups = ["packaging"]
231230
commands = [
232-
"{[testenv:packaging]commands}",
231+
["python", "-m", "build", "--outdir", "dist/"],
232+
["twine", "check", "dist/*"],
233233
["twine", "upload", "dist/*"],
234234
]
235235

src/h2/__init__.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
2-
h2
3-
~~
4-
5-
A HTTP/2 implementation.
2+
HTTP/2 protocol implementation for Python.
63
"""
74
from __future__ import annotations
85

9-
__version__ = "4.1.0"
6+
__version__ = "4.2.0"

0 commit comments

Comments
 (0)