From 2d1d3980b6a3241b09d44710308bd40efac64de1 Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Thu, 2 Jul 2026 11:57:15 +0530 Subject: [PATCH] update(pypi) --- README.md | 2 +- pyproject.toml | 2 +- pythonstl/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c4c69b..a1ae782 100644 --- a/README.md +++ b/README.md @@ -460,4 +460,4 @@ Contributions are welcome! Please: - Issues: [GitHub Issues](https://github.com/AnshMNSoni/PythonSTL/issues) - Linkedin: [@anshmnsoni](https://linkedin.com/in/anshmnsoni) -**PythonSTL v1.1.8** - Bringing C++ STL elegance to Python +**PythonSTL v1.1.9** - Bringing C++ STL elegance to Python diff --git a/pyproject.toml b/pyproject.toml index b384fb3..23214ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ module-name = "pythonstl._rust" [project] name = "pythonstl" -version = "1.1.8" +version = "1.1.9" description = "C++ STL-style containers implemented in Python using the Facade Design Pattern" readme = "README.md" authors = [ diff --git a/pythonstl/__init__.py b/pythonstl/__init__.py index 6bf68fa..e9e41a4 100644 --- a/pythonstl/__init__.py +++ b/pythonstl/__init__.py @@ -8,7 +8,7 @@ data structures while hiding implementation details from users. """ -__version__ = "1.1.8" +__version__ = "1.1.9" __author__ = "PySTL Contributors" from pythonstl.facade.stack import stack