Skip to content

Commit 67aa1dd

Browse files
committed
Bump minor version.
1 parent 529c3a9 commit 67aa1dd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/async/http/version.rb

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

66
module Async
77
module HTTP
8-
VERSION = "0.73.0"
8+
VERSION = "0.74.0"
99
end
1010
end

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please see the [project documentation](https://socketry.github.io/async-http/) f
1616

1717
Please see the [project releases](https://socketry.github.io/async-http/releases/index) for all releases.
1818

19-
### Unreleased
19+
### v0.74.0
2020

2121
- [`Async::HTTP::Internet` accepts keyword arguments](https://socketry.github.io/async-http/releases/index#async::http::internet-accepts-keyword-arguments)
2222

releases.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Releases
22

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

55
### `Async::HTTP::Internet` accepts keyword arguments
66

77
`Async::HTTP::Internet` now accepts keyword arguments for making a request, e.g.
88

9-
```ruby
9+
``` ruby
1010
internet = Async::HTTP::Internet.instance
1111

1212
# This will let you override the authority (HTTP/1.1 host header, HTTP/2 :authority header):
@@ -22,7 +22,7 @@ internet.get("https://example.com", scheme: "http")
2222

2323
`Protocol::HTTP::Request` now supports an `interim_response` callback, which will be called with the interim response status and headers. This works on both the client and the server:
2424

25-
```ruby
25+
``` ruby
2626
# Server side:
2727
def call(request)
2828
if request.headers['expect'].include?('100-continue')

0 commit comments

Comments
 (0)