From aa8b943b85219f51b6aa8c2f84e037f6330dc841 Mon Sep 17 00:00:00 2001 From: Hammad Nasir Date: Fri, 25 Nov 2022 22:50:50 +0500 Subject: [PATCH] refactor: updated method names of MArrayElement --- pyproject.toml | 2 +- src/manim_data_structures/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 *