From 3552738f1b81a3e924a0433663d44bed0debbc55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20G=C3=A2rlon=C8=9Ba?= <70283087+garlontas@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:47:21 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=20v1.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- pystreamapi/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 29b4a1b..a23e94c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "streams.py" -version = "1.4.0" +version = "1.4.1" authors = ["Stefan Garlonta "] description = "A stream library for Python inspired by Java Stream API" keywords = ["streams", "parallel", "data"] diff --git a/pystreamapi/__init__.py b/pystreamapi/__init__.py index 8deb6cf..9d772ee 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.4.0" +__version__ = "1.4.1" __all__ = ["Stream", "ErrorLevel"]