Skip to content

Commit

Permalink
Merge pull request #40 from jawah/feat-informational
Browse files Browse the repository at this point in the history
Support for informational response 1XX in HTTP/3
  • Loading branch information
Ousret authored Sep 28, 2024
2 parents f39c656 + 7c7aa4f commit fb00a76
Show file tree
Hide file tree
Showing 8 changed files with 223 additions and 61 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.2.0 (2024-09-28)
====================

**Added**
- Support for informational response 1XX in HTTP/3. The event ``InformationalHeadersReceived`` has been added to reflect that.

**Changed**
- Update rustls v0.23.12 to v0.23.13 along with dependents.

1.1.0 (2024-09-20)
====================

Expand Down
87 changes: 44 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qh3"
version = "1.1.0"
version = "1.2.0"
edition = "2021"
rust-version = "1.75"
license = "BSD-3"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ strict_optional = false
warn_redundant_casts = true
warn_unused_ignores = true

[tool.ruff]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"W", # pycodestyle
"I", # isort
]

[tool.ruff.isort]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
2 changes: 1 addition & 1 deletion qh3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .quic.packet import QuicProtocolVersion
from .tls import CipherSuite, SessionTicket

__version__ = "1.1.0"
__version__ = "1.2.0"

__all__ = (
"connect",
Expand Down
Loading

0 comments on commit fb00a76

Please sign in to comment.