From 38cbb593d19f351e83e6f7738353b87b77117aea Mon Sep 17 00:00:00 2001 From: AmirHossein Ahmadi Date: Wed, 9 Apr 2025 09:17:11 +0330 Subject: [PATCH 1/2] update version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b1767cf..8a9f5e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyenumerable" -version = "1.1.3" +version = "1.1.4" description = "Implementation of .net's IEnumerable interface in python W/ support for generics." readme = "readme.md" license = "WTFPL" From 0acefa2625f000066910146584bf25e72a15a156 Mon Sep 17 00:00:00 2001 From: AmirHossein Ahmadi Date: Wed, 9 Apr 2025 09:17:24 +0330 Subject: [PATCH 2/2] fix penum init inconsistencies --- pyenumerable/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyenumerable/__init__.py b/pyenumerable/__init__.py index d9042eb..d0193dd 100644 --- a/pyenumerable/__init__.py +++ b/pyenumerable/__init__.py @@ -9,6 +9,7 @@ __all__ = ["Enumerable", "PurePythonEnumerable", "pp_enumerable"] __author__ = "AmirHossein Ahmadi" __license__ = "WTFPL" -__version__ = "1.1.2" +__version__ = "1.1.4" __maintainer__ = "AmirHossein Ahmadi" __email__ = "amirthehossein@gmail.com" +__documentation__ = "https://github.com/amirongit/PyEnumerable/blob/master/documentation.md"