Skip to content

Commit f899b0f

Browse files
committed
Bump minor version.
1 parent 1498871 commit f899b0f

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
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.51.1"
8+
VERSION = "0.52.0"
99
end
1010
end

readme.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,30 @@ Provides abstractions for working with the HTTP protocol.
1414

1515
Please see the [project documentation](https://socketry.github.io/protocol-http/) for more details.
1616

17-
- [Streaming](https://socketry.github.io/protocol-http/guides/streaming/index) - This guide gives an overview of how to implement streaming requests and responses.
18-
1917
- [Getting Started](https://socketry.github.io/protocol-http/guides/getting-started/index) - This guide explains how to use `protocol-http` for building abstract HTTP interfaces.
2018

19+
- [Message Body](https://socketry.github.io/protocol-http/guides/message-body/index) - This guide explains how to work with HTTP request and response message bodies using `Protocol::HTTP::Body` classes.
20+
21+
- [Middleware](https://socketry.github.io/protocol-http/guides/middleware/index) - This guide explains how to build and use HTTP middleware with `Protocol::HTTP::Middleware`.
22+
23+
- [Hypertext References](https://socketry.github.io/protocol-http/guides/hypertext-references/index) - This guide explains how to use `Protocol::HTTP::Reference` for constructing and manipulating hypertext references (URLs with parameters).
24+
25+
- [URL Parsing](https://socketry.github.io/protocol-http/guides/url-parsing/index) - This guide explains how to use `Protocol::HTTP::URL` for parsing and manipulating URL components, particularly query strings and parameters.
26+
27+
- [Streaming](https://socketry.github.io/protocol-http/guides/streaming/index) - This guide gives an overview of how to implement streaming requests and responses.
28+
2129
- [Design Overview](https://socketry.github.io/protocol-http/guides/design-overview/index) - This guide explains the high level design of `protocol-http` in the context of wider design patterns that can be used to implement HTTP clients and servers.
2230

2331
## Releases
2432

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

35+
### v0.52.0
36+
37+
- Add `Protocol::HTTP::Headers#to_a` method that returns the fields array, providing compatibility with standard Ruby array conversion pattern.
38+
- Expose `tail` in `Headers.new` so that trailers can be accurately reproduced.
39+
- Add agent context.
40+
2741
### v0.51.0
2842

2943
- `Protocol::HTTP::Headers` now raise a `DuplicateHeaderError` when a duplicate singleton header (e.g. `content-length`) is added.

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.52.0
44

55
- Add `Protocol::HTTP::Headers#to_a` method that returns the fields array, providing compatibility with standard Ruby array conversion pattern.
66
- Expose `tail` in `Headers.new` so that trailers can be accurately reproduced.

0 commit comments

Comments
 (0)