diff --git a/README.md b/README.md index fc6a908..41e01db 100644 --- a/README.md +++ b/README.md @@ -419,4 +419,4 @@ Contributions are welcome! Please: - GitHub: [@AnshMNSoni](https://github.com/AnshMNSoni) - Issues: [GitHub Issues](https://github.com/AnshMNSoni/PythonSTL/issues) -**PythonSTL v1.1.4** - Bringing C++ STL elegance to Python +**PythonSTL v1.1.5** - Bringing C++ STL elegance to Python \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 236c093..52344f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,11 +8,11 @@ module-name = "pythonstl._rust" [project] name = "pythonstl" -version = "1.1.4" +version = "1.1.5" description = "C++ STL-style containers implemented in Python using the Facade Design Pattern" readme = "README.md" authors = [ - {name = "PySTL Contributors", email = "pythonstl@example.com"} + {name = "PySTL Contributors", email = "anshsoni702@gmail.com"} ] license = {text = "MIT"} classifiers = [ diff --git a/pythonstl/__init__.py b/pythonstl/__init__.py index 54e07fd..255ce6f 100644 --- a/pythonstl/__init__.py +++ b/pythonstl/__init__.py @@ -8,7 +8,7 @@ data structures while hiding implementation details from users. """ -__version__ = "1.1.4" +__version__ = "1.1.5" __author__ = "PySTL Contributors" from pythonstl.facade.stack import stack