diff --git a/pyproject.toml b/pyproject.toml index 9c0c6ae..ee20c04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "manim-data-structures" -version = "0.1.1" +version = "0.1.2" description = "A Manim implementation for data structures" authors = ["Hammad Nasir "] readme = "README.md" diff --git a/src/manim_data_structures/__init__.py b/src/manim_data_structures/__init__.py index 648ffdd..b3cf261 100644 --- a/src/manim_data_structures/__init__.py +++ b/src/manim_data_structures/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.1" +__version__ = "0.1.2" from .array import *