Skip to content

Commit ea5a7b3

Browse files
authored
Fix: Version Control and download badge correctness (#9)
* changes done: might be remove in future * change in pyproject.toml file * fix: downloads badge * fix: downloads badge * fix: downloads badge
1 parent 28ba54e commit ea5a7b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

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

99
<div align="center">
1010
<img width="500" height="500" alt="pythonstl_logo" src="https://github.com/user-attachments/assets/7ef83b5f-d005-48e0-a186-05dd7e2221c2" />
@@ -401,4 +401,4 @@ Contributions are welcome! Please:
401401
- GitHub: [@AnshMNSoni](https://github.com/AnshMNSoni)
402402
- Issues: [GitHub Issues](https://github.com/AnshMNSoni/PythonSTL/issues)
403403

404-
**PythonSTL v0.1.0** - Bringing C++ STL elegance to Python
404+
**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.4"
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)