Skip to content

Commit d78d4cb

Browse files
committed
v4.1.0
1 parent 27e8a86 commit d78d4cb

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CHANGELOG.rst

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

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

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

@@ -18,9 +18,10 @@ dev
1818
- Support for Python 3.11 has been added.
1919
- Support for Python 3.12 has been added.
2020
- Support for Python 3.13 has been added.
21-
- Optimization of headers into bytes encoding.
22-
- Added type hints.
21+
- Optimized bytes encoding of headers.
2322
- Updated packaging and testing infrastructure.
23+
- Code cleanup and linting.
24+
- Added type hints.
2425

2526

2627
4.0.0 (2020-08-30)

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ lint.select = [
9696
"ALL",
9797
]
9898
lint.ignore = [
99+
"A005", # backwards-compatibility: Module `struct` shadows a Python standard-library module
99100
"ANN401", # kwargs with typing.Any
100101
"CPY", # not required
101102
"D101", # docs readability
@@ -203,11 +204,10 @@ commands = [
203204
]
204205

205206
[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}"
207+
base_python = ["python39"]
208+
dependency_groups = ["packaging"]
209+
allowlist_externals = ["twine"]
209210
commands = [
210-
"{[testenv:packaging]commands}",
211211
["twine", "upload", "dist/*"],
212212
]
213213

src/hpack/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
"OversizedHeaderListError",
2121
]
2222

23-
__version__ = "4.1.0+dev"
23+
__version__ = "4.1.0"

0 commit comments

Comments
 (0)