From 8eeec58b2c00ee8e795c17a88012cef0842ba2d8 Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Wed, 18 Feb 2026 17:48:36 +0530 Subject: [PATCH 1/5] changes done: might be remove in future --- README.md | 4 ++-- pyproject.toml | 2 +- pythonstl/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 036d338..c17aafe 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,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.0-brightgreen.svg)](https://github.com/AnshMNSoni/STL) +[![Version](https://img.shields.io/badge/version-0.1.1-brightgreen.svg)](https://github.com/AnshMNSoni/STL) A production-ready Python package that replicates C++ STL-style data structures using the **Facade Design Pattern**. PythonSTL provides clean, familiar interfaces for developers coming from C++ while maintaining Pythonic best practices. @@ -391,4 +391,4 @@ Contributions are welcome! Please: - GitHub: [@AnshMNSoni](https://github.com/AnshMNSoni) - Issues: [GitHub Issues](https://github.com/AnshMNSoni/STL/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..2451c93 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.1" 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 From c40aa541938f6c4d974222b9c08d97b858675a82 Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Wed, 18 Feb 2026 17:54:31 +0530 Subject: [PATCH 2/5] change in pyproject.toml file --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2451c93..a2a883e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pythonstl" -version = "0.1.1" +version = "0.1.2" description = "C++ STL-style containers implemented in Python using the Facade Design Pattern" readme = "README.md" authors = [ From 47176df155660ad4c92a1242b969979795a7f1ad Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Wed, 18 Feb 2026 18:45:42 +0530 Subject: [PATCH 3/5] fix: downloads badge --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a2a883e..c3bc769 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pythonstl" -version = "0.1.2" +version = "0.1.3" description = "C++ STL-style containers implemented in Python using the Facade Design Pattern" readme = "README.md" authors = [ From 911355493bf99e56131e89a38ae9fcf777242d66 Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Wed, 18 Feb 2026 18:51:07 +0530 Subject: [PATCH 4/5] fix: downloads badge --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 455eb62..6eeab1e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ [![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 From 6ff11c3a4212a6a80a953a285e8706f442b1dfc5 Mon Sep 17 00:00:00 2001 From: AnshMNSoni Date: Wed, 18 Feb 2026 18:51:34 +0530 Subject: [PATCH 5/5] fix: downloads badge --- README.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6eeab1e..8095e4c 100644 --- a/README.md +++ b/README.md @@ -4,6 +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) +
pythonstl_logo diff --git a/pyproject.toml b/pyproject.toml index c3bc769..027d424 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pythonstl" -version = "0.1.3" +version = "0.1.4" description = "C++ STL-style containers implemented in Python using the Facade Design Pattern" readme = "README.md" authors = [