Skip to content

Commit 9182cde

Browse files
committed
Bump minor version.
1 parent 3318a3e commit 9182cde

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

lib/async/version.rb

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

66
# @namespace
77
module Async
8-
VERSION = "2.37.0"
8+
VERSION = "2.38.0"
99
end

readme.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,15 @@ Please see the [project documentation](https://socketry.github.io/async/) for mo
3535

3636
Please see the [project releases](https://socketry.github.io/async/releases/index) for all releases.
3737

38+
### v2.38.0
39+
40+
- Rename `Task#stop` to `Task#cancel` for better clarity and consistency with common concurrency terminology. The old `stop` method is still available as an alias for backward compatibility, but it is recommended to use `cancel` going forward.
41+
- Forward arguments from `Task#wait` -\> `Promise#wait`, so `task.wait(timeout: N)` is supported.
42+
3843
### v2.37.0
3944

4045
- Introduce `Async::Loop` for robust, time-aligned loops.
46+
- Add support for `Async::Promise#wait(timeout: N)`.
4147

4248
### v2.36.0
4349

@@ -73,10 +79,6 @@ Please see the [project releases](https://socketry.github.io/async/releases/inde
7379

7480
- Fix typo in documentation.
7581

76-
### v2.32.0
77-
78-
- Introduce `Queue#waiting_count` and `PriorityQueue#waiting_count`. Generally for statistics/testing purposes only.
79-
8082
## See Also
8183

8284
- [async-http](https://github.com/socketry/async-http) — Asynchronous HTTP client/server.

releases.md

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

3-
## Unreleased
3+
## v2.38.0
44

55
- Rename `Task#stop` to `Task#cancel` for better clarity and consistency with common concurrency terminology. The old `stop` method is still available as an alias for backward compatibility, but it is recommended to use `cancel` going forward.
6-
- Forward arguments from `Task#wait` -> `Promise#wait`, so `task.wait(timeout: N)` is supported.
6+
- Forward arguments from `Task#wait` -\> `Promise#wait`, so `task.wait(timeout: N)` is supported.
77

88
## v2.37.0
99

0 commit comments

Comments
 (0)