Skip to content

Commit 00f07de

Browse files
committed
Bump minor version.
1 parent f21c3a1 commit 00f07de

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

lib/async/http/faraday/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
module Async
77
module HTTP
88
module Faraday
9-
VERSION = "0.20.0"
9+
VERSION = "0.21.0"
1010
end
1111
end
1212
end

readme.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,26 @@ Please see the [project documentation](https://socketry.github.io/async-http-far
1717

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

20+
### v0.21.0
21+
22+
- [Improved support for `timeout` and `read_timeout`.](https://socketry.github.io/async-http-faraday/releases/index#improved-support-for-timeout-and-read_timeout.)
23+
2024
### v0.20.0
2125

2226
- Implement the new response streaming interface, which provides the initial response status code and headers before streaming the response body.
2327
- An empty response now sets the response body to an empty string rather than `nil` as required by the Faraday specification.
2428

2529
### v0.19.0
2630

27-
- [Support `in_parallel`](https://socketry.github.io/async-http-faraday/releases/index#support-in_parallel)
31+
- [Support `in_parallel`.](https://socketry.github.io/async-http-faraday/releases/index#support-in_parallel.)
2832

2933
### v0.18.0
3034

31-
- [Config Block](https://socketry.github.io/async-http-faraday/releases/index#config-block)
35+
- [Support for `config_block` returning a middleware wrapper.](https://socketry.github.io/async-http-faraday/releases/index#support-for-config_block-returning-a-middleware-wrapper.)
3236

3337
### v0.17.0
3438

35-
- [Per-thread Client Cache](https://socketry.github.io/async-http-faraday/releases/index#per-thread-client-cache)
39+
- [Introduced a per-thread `Client` cache.](https://socketry.github.io/async-http-faraday/releases/index#introduced-a-per-thread-client-cache.)
3640

3741
## Contributing
3842

releases.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Releases
22

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

55
### Improved support for `timeout` and `read_timeout`.
66

77
Previously, only a per-connection `timeout` was supported, but now:
88

9-
1. `timeout` can be set per request too.
10-
2. `read_timeout` can be set per adapter and is assigned to `IO#timeout` if available.
9+
1. `timeout` can be set per request too.
10+
2. `read_timeout` can be set per adapter and is assigned to `IO#timeout` if available.
1111

1212
This improves compatibility with existing code that uses `timeout` and `read_timeout`.
1313

0 commit comments

Comments
 (0)