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"] 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"]