From 0b712d1d1c4aae27e24e7e6b5d2c69cc6a14cc12 Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Wed, 1 Jul 2026 12:19:41 +0530 Subject: [PATCH] update(version) --- 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 5beaa99..6e446ac 100644 --- a/README.md +++ b/README.md @@ -434,4 +434,4 @@ Contributions are welcome! Please: - GitHub: [@AnshMNSoni](https://github.com/AnshMNSoni) - Issues: [GitHub Issues](https://github.com/AnshMNSoni/PythonSTL/issues) -**PythonSTL v1.1.5** - Bringing C++ STL elegance to Python \ No newline at end of file +**PythonSTL v1.1.6** - Bringing C++ STL elegance to Python \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 52344f2..43f2086 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ module-name = "pythonstl._rust" [project] name = "pythonstl" -version = "1.1.5" +version = "1.1.6" 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 255ce6f..7986fb1 100644 --- a/pythonstl/__init__.py +++ b/pythonstl/__init__.py @@ -8,7 +8,7 @@ data structures while hiding implementation details from users. """ -__version__ = "1.1.5" +__version__ = "1.1.6" __author__ = "PySTL Contributors" from pythonstl.facade.stack import stack