From 4f00cc5950cbc3c0c77ed47b75d1a7bfbc390322 Mon Sep 17 00:00:00 2001 From: ebonnal Date: Wed, 18 Dec 2024 15:47:13 +0000 Subject: [PATCH] 1.4.0-rc4 --- README.md | 6 +++--- version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 814c325..1bd76d7 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: @@ -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: diff --git a/version.py b/version.py index 68a668d..100a760 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ # to show the CHANGELOG: git log -- version.py -__version__ = "1.4.0-rc3" +__version__ = "1.4.0-rc4"