Skip to content

Commit 0858233

Browse files
committed
Update release notes
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent a64ca09 commit 0858233

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

RELEASE_NOTES.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@
5353

5454
* The following symbols were moved to the top-level `frequenz.channels` package:
5555

56-
- `Merge`
57-
- `MergeNamed`
5856
- `Selected`
5957
- `SelectError`
6058
- `SelectErrorGroup`
@@ -68,6 +66,14 @@
6866

6967
This channel was removed as it is not recommended practice and was a niche use case. If you need to use it, you can set up two channels or copy the `Bidirectional` class from the previous version to your project.
7068

69+
* `Merge`
70+
71+
Replaced by the new `merge()` function. When replacing `Merge` with `merge()` please keep in mind that this new function will raise a `ValueError` if no receivers are passed to it.
72+
73+
* `MergeNamed`
74+
75+
This class was redundant, use either the new `merge()` function or `select()` instead.
76+
7177
* `Peekable`
7278

7379
This class was removed because it was merely a shortcut to a receiver that caches the last value received. It did not fit the channel abstraction well and was infrequently used.
@@ -92,6 +98,8 @@
9298

9399
## New Features
94100

101+
* A new `merge()` function was added to replace `Merge`.
102+
95103
* `Anycast`
96104

97105
- The following new read-only properties were added:
@@ -126,14 +134,6 @@
126134

127135
- A more useful implementation of `__str__ and `__repr__` were added.
128136

129-
* `Merge`
130-
131-
- A more useful implementation of `__str__ and `__repr__` were added.
132-
133-
* `MergeNamed`
134-
135-
- A more useful implementation of `__str__ and `__repr__` were added.
136-
137137
* `Peekable`
138138

139139
- A more useful implementation of `__str__ and `__repr__` were added.

0 commit comments

Comments
 (0)