Skip to content

Commit 8eeec58

Browse files
committed
changes done: might be remove in future
1 parent 79fb400 commit 8eeec58

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Python Version](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/)
44
[![PyPI version](https://img.shields.io/pypi/v/pythonstl.svg)](https://pypi.org/project/pythonstl/)
55
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
6-
[![Version](https://img.shields.io/badge/version-0.1.0-brightgreen.svg)](https://github.com/AnshMNSoni/STL)
6+
[![Version](https://img.shields.io/badge/version-0.1.1-brightgreen.svg)](https://github.com/AnshMNSoni/STL)
77

88
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.
99

@@ -391,4 +391,4 @@ Contributions are welcome! Please:
391391
- GitHub: [@AnshMNSoni](https://github.com/AnshMNSoni)
392392
- Issues: [GitHub Issues](https://github.com/AnshMNSoni/STL/issues)
393393

394-
**PythonSTL v0.1.0** - Bringing C++ STL elegance to Python
394+
**PythonSTL v0.1.1** - Bringing C++ STL elegance to Python

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pythonstl"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "C++ STL-style containers implemented in Python using the Facade Design Pattern"
99
readme = "README.md"
1010
authors = [

pythonstl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
data structures while hiding implementation details from users.
99
"""
1010

11-
__version__ = "0.1.0"
11+
__version__ = "0.1.1"
1212
__author__ = "PySTL Contributors"
1313

1414
from pythonstl.facade.stack import stack

0 commit comments

Comments
 (0)