Skip to content

Commit

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

dev
---
4.1.0 (2025-01-22)
------------------

**API Changes (Backward Incompatible)**

Expand All @@ -18,9 +18,10 @@ 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.
- Optimization of headers into bytes encoding.
- Added type hints.
- Optimized bytes encoding of headers.
- Updated packaging and testing infrastructure.
- Code cleanup and linting.
- Added type hints.


4.0.0 (2020-08-30)
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ lint.select = [
"ALL",
]
lint.ignore = [
"A005", # backwards-compatibility: Module `struct` shadows a Python standard-library module
"ANN401", # kwargs with typing.Any
"CPY", # not required
"D101", # docs readability
Expand Down Expand Up @@ -203,11 +204,10 @@ 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/*"],
]

Expand Down
2 changes: 1 addition & 1 deletion src/hpack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
"OversizedHeaderListError",
]

__version__ = "4.1.0+dev"
__version__ = "4.1.0"

0 comments on commit d78d4cb

Please sign in to comment.