Skip to content

Commit 0d59b03

Browse files
committed
Bump minor version.
1 parent 2cb6c89 commit 0d59b03

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

lib/protocol/http/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
module Protocol
77
module HTTP
8-
VERSION = "0.57.0"
8+
VERSION = "0.58.0"
99
end
1010
end

readme.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ Please see the [project documentation](https://socketry.github.io/protocol-http/
3030

3131
Please see the [project releases](https://socketry.github.io/protocol-http/releases/index) for all releases.
3232

33+
### v0.58.0
34+
35+
- Move trailer validation to `Headers#add` method to ensure all additions are checked at the time of addition as this is a hard requirement.
36+
- Introduce `Headers#header` method to enumerate only the main headers, excluding trailers. This can be used after invoking `Headers#trailer!` to avoid race conditions.
37+
- Fix `Headers#to_h` so that indexed headers are not left in an inconsistent state if errors occur during processing.
38+
3339
### v0.57.0
3440

3541
- Always use `#parse` when parsing header values from strings to ensure proper normalization and validation.
@@ -83,10 +89,6 @@ Please see the [project releases](https://socketry.github.io/protocol-http/relea
8389

8490
- Add support for parsing `accept`, `accept-charset`, `accept-encoding` and `accept-language` headers into structured values.
8591

86-
### v0.46.0
87-
88-
- Add support for `priority:` header.
89-
9092
## See Also
9193

9294
- [protocol-http1](https://github.com/socketry/protocol-http1) — HTTP/1 client/server implementation using this

releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releases
22

3-
## Unreleased
3+
## v0.58.0
44

55
- Move trailer validation to `Headers#add` method to ensure all additions are checked at the time of addition as this is a hard requirement.
66
- Introduce `Headers#header` method to enumerate only the main headers, excluding trailers. This can be used after invoking `Headers#trailer!` to avoid race conditions.

0 commit comments

Comments
 (0)