diff --git a/README.md b/README.md index 5e871ca..8095e4c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/) [![PyPI version](https://img.shields.io/pypi/v/pythonstl.svg)](https://pypi.org/project/pythonstl/) [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE) -[![Version](https://img.shields.io/badge/version-0.1.1-brightgreen.svg)](https://github.com/AnshMNSoni/PythonSTL) +
pythonstl_logo @@ -401,4 +401,4 @@ Contributions are welcome! Please: - GitHub: [@AnshMNSoni](https://github.com/AnshMNSoni) - Issues: [GitHub Issues](https://github.com/AnshMNSoni/PythonSTL/issues) -**PythonSTL v0.1.0** - Bringing C++ STL elegance to Python +**PythonSTL v0.1.1** - Bringing C++ STL elegance to Python diff --git a/pyproject.toml b/pyproject.toml index 9d08629..027d424 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pythonstl" -version = "0.1.0" +version = "0.1.4" 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 a585d2d..77d4b2f 100644 --- a/pythonstl/__init__.py +++ b/pythonstl/__init__.py @@ -8,7 +8,7 @@ data structures while hiding implementation details from users. """ -__version__ = "0.1.0" +__version__ = "0.1.1" __author__ = "PySTL Contributors" from pythonstl.facade.stack import stack