Skip to content

Commit

Permalink
v4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kriechi committed Feb 1, 2025
1 parent 0b98b24 commit dacd614
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Release History
===============

dev
---
4.2.0 (2025-02-01)
------------------

**API Changes (Backward Incompatible)**

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -225,11 +225,11 @@ 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"]
commands = [
"{[testenv:packaging]commands}",
["python", "-m", "build", "--outdir", "dist/"],
["twine", "check", "dist/*"],
["twine", "upload", "dist/*"],
]

Expand Down
7 changes: 2 additions & 5 deletions src/h2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
"""
h2
~~
A HTTP/2 implementation.
HTTP/2 protocol implementation for Python.
"""
from __future__ import annotations

__version__ = "4.1.0"
__version__ = "4.2.0"

0 comments on commit dacd614

Please sign in to comment.