Skip to content

Commit

Permalink
1.4.0-rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Dec 19, 2024
1 parent 58fc369 commit 4f00cc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ assert list(integers_by_parity_by_2) == [[0, 2], [1, 3], [4, 6], [5, 7], [8], [9
### `.groupby`

> [!NOTE]
> Available in the 1.4.0 release candidate: `pip install streamable==1.4.0-rc3`
> Available in the 1.4.0 release candidate: `pip install streamable==1.4.0-rc4`
> Like `.group`, but groups into `(key, elements)` tuples:
```python
Expand Down Expand Up @@ -383,7 +383,7 @@ assert list(five_first_integers) == [0, 1, 2, 3, 4]
## `.skip`

> [!NOTE]
> Available in the 1.4.0 release candidate: `pip install streamable==1.4.0-rc3`
> Available in the 1.4.0 release candidate: `pip install streamable==1.4.0-rc4`
> Skips the first specified number of elements:
Expand All @@ -395,7 +395,7 @@ assert list(integers_after_five) == [5, 6, 7, 8, 9]

## `.distinct`
> [!NOTE]
> Available in the 1.4.0 release candidate: `pip install streamable==1.4.0-rc3`
> Available in the 1.4.0 release candidate: `pip install streamable==1.4.0-rc4`
> Removes duplicates:
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# to show the CHANGELOG: git log -- version.py
__version__ = "1.4.0-rc3"
__version__ = "1.4.0-rc4"

0 comments on commit 4f00cc5

Please sign in to comment.