diff --git a/README.md b/README.md
index 5e871ca..8095e4c 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
[](https://www.python.org/downloads/)
[](https://pypi.org/project/pythonstl/)
[](LICENSE)
-[](https://github.com/AnshMNSoni/PythonSTL)
+

@@ -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