You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,15 @@ Please see the [project documentation](https://socketry.github.io/async/) for mo
35
35
36
36
Please see the [project releases](https://socketry.github.io/async/releases/index) for all releases.
37
37
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
+
38
43
### v2.37.0
39
44
40
45
- Introduce `Async::Loop` for robust, time-aligned loops.
46
+
- Add support for `Async::Promise#wait(timeout: N)`.
41
47
42
48
### v2.36.0
43
49
@@ -73,10 +79,6 @@ Please see the [project releases](https://socketry.github.io/async/releases/inde
73
79
74
80
- Fix typo in documentation.
75
81
76
-
### v2.32.0
77
-
78
-
- Introduce `Queue#waiting_count` and `PriorityQueue#waiting_count`. Generally for statistics/testing purposes only.
Copy file name to clipboardExpand all lines: releases.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
# Releases
2
2
3
-
## Unreleased
3
+
## v2.38.0
4
4
5
5
- 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.
0 commit comments