Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
<br>

<div align="center">
<img width="500" height="500" alt="pythonstl_logo" src="https://github.com/user-attachments/assets/7ef83b5f-d005-48e0-a186-05dd7e2221c2" />
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion pythonstl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading