From 6b9f0a81f1646e431a0e348a511890fba1c5c8ca Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Wed, 11 Sep 2024 10:36:25 +1200 Subject: [PATCH] Bump minor version. --- lib/protocol/http/version.rb | 2 +- readme.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/protocol/http/version.rb b/lib/protocol/http/version.rb index b190d3d..e2375a8 100644 --- a/lib/protocol/http/version.rb +++ b/lib/protocol/http/version.rb @@ -5,6 +5,6 @@ module Protocol module HTTP - VERSION = "0.33.0" + VERSION = "0.34.0" end end diff --git a/readme.md b/readme.md index f7b4b3d..f48a600 100644 --- a/readme.md +++ b/readme.md @@ -14,6 +14,8 @@ Provides abstractions for working with the HTTP protocol. Please see the [project documentation](https://socketry.github.io/protocol-http/) for more details. + - [Streaming](https://socketry.github.io/protocol-http/guides/streaming/index) - This guide gives an overview of how to implement streaming requests and responses. + - [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. - [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.