Skip to content

Commit

Permalink
feat: MArray can grow in four directions
Browse files Browse the repository at this point in the history
  • Loading branch information
drageelr committed Nov 27, 2022
1 parent a3951e0 commit 251d6ff
Show file tree
Hide file tree
Showing 11 changed files with 191 additions and 110 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ docs/build
dist
*.DS_Store
__pycache__
env
env
playground
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.4] - 2022-11-27

### Added

- [`MArray`](https://github.com/drageelr/manim-data-structures/blob/1854335f2311c3157f19e6d328165013fc64cbf6/src/manim_data_structures/array.py#L243) class can now grow in any of the four directions; Up, Down, Right & Left.

## [0.1.3] - 2022-11-25

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
project = 'Manim Data Structures'
copyright = '2022, Hammad Nasir (aka DrageelR)'
author = 'Hammad Nasir (aka DrageelR)'
release = '0.1.3'
release = manim_data_structures.__version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
9 changes: 9 additions & 0 deletions docs/source/reference/enums.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Enums
=====

.. currentmodule:: manim_data_structures

.. autosummary::
:toctree: generated

~m_enum.MArrayDirection

This file was deleted.

This file was deleted.

3 changes: 2 additions & 1 deletion docs/source/reference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ Module Index
.. toctree::
:maxdepth: 2

arrays
arrays
enums
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "manim-data-structures"
version = "0.1.3"
version = "0.1.4"
description = "A Manim implementation for data structures"
authors = ["Hammad Nasir <[email protected]>"]
readme = "README.md"
Expand Down
5 changes: 3 additions & 2 deletions src/manim_data_structures/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
__version__ = "0.1.3"
__version__ = "0.1.4"

from .array import *
from .m_enum import *

__all__ = ["MArrayElement", "MArray"]
__all__ = ["MArrayElement", "MArray", "MArrayDirection"]
Loading

0 comments on commit 251d6ff

Please sign in to comment.