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