From a52dba12268e8e4cd6e1d7a87d9561df0be7c4a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20G=C3=A2rlon=C8=9Ba?= <70283087+garlontas@users.noreply.github.com> Date: Mon, 13 Apr 2026 16:42:22 +0200 Subject: [PATCH 1/2] Bump version from 1.3.0 to 1.4.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d1c783b..0a51687 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "streams.py" -version = "1.3.0" +version = "1.4.0" authors = ["Stefan Garlonta "] description = "A stream library for Python inspired by Java Stream API" keywords = ["streams", "parallel", "data"] From 76d1f5cfc07899b5829ed4f7bbae79313b91e105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20G=C3=A2rlon=C8=9Ba?= <70283087+garlontas@users.noreply.github.com> Date: Mon, 13 Apr 2026 16:43:02 +0200 Subject: [PATCH 2/2] Bump version from 1.3.0 to 1.4.0 --- pystreamapi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pystreamapi/__init__.py b/pystreamapi/__init__.py index 2ed1971..8deb6cf 100644 --- a/pystreamapi/__init__.py +++ b/pystreamapi/__init__.py @@ -1,5 +1,5 @@ from pystreamapi.__stream import Stream from pystreamapi._streams.error.__levels import ErrorLevel -__version__ = "1.3.0" +__version__ = "1.4.0" __all__ = ["Stream", "ErrorLevel"]