diff --git a/HISTORY.md b/HISTORY.md index 059c94a..a2b9009 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,15 @@ History == +0.3.0 (2023-01-19) +-- +* Feature +1. Add `draw_dot` function on display module + +* Patch +1. Fix `write_text` function error on display module if text length is 23 +2. Change module constructor argument from uuid to id + 0.2.1 (2022-12-02) -- * Patch diff --git a/docs/history.rst b/docs/history.rst index a7e3367..2086ef0 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -1,6 +1,21 @@ History ======= +0.3.0 (2023-01-19) +------------------ + +- Feature + +1. Add ``draw_dot`` function on display module + +- Patch + +1. Fix ``write_text`` function error on display module if text length is + 23 +2. Change module constructor argument from uuid to id + +.. _section-1: + 0.2.1 (2022-12-02) ------------------ @@ -8,7 +23,7 @@ History 1. Refactor ``write_text`` input type on display module -.. _section-1: +.. _section-2: 0.2.0 (2022-12-02) ------------------ @@ -17,7 +32,7 @@ History 1. Refactor getter/setter for each MODI+ module -.. _section-2: +.. _section-3: 0.1.1 (2022-11-23) ------------------ @@ -26,7 +41,7 @@ History 1. Change python minimum version to 3.7 -.. _section-3: +.. _section-4: 0.1.0 (2022-11-22) ------------------ @@ -39,7 +54,7 @@ History 4. Add preset resource on speaker and display module 5. Add search module time and timeout exception -.. _section-4: +.. _section-5: 0.0.2 (2022-11-18) ------------------ @@ -48,7 +63,7 @@ History 1. Change python minimum version to 3.9 -.. _section-5: +.. _section-6: 0.0.1 (2022-11-15) ------------------ diff --git a/modi_plus/about.py b/modi_plus/about.py index 54350f7..99079e9 100644 --- a/modi_plus/about.py +++ b/modi_plus/about.py @@ -1,5 +1,5 @@ __title__ = "pymodi-plus" -__version__ = "0.2.1" +__version__ = "0.3.0" __author__ = "LUXROBO" __email__ = "module.dev@luxrobo.com" __description__ = "Python API for controlling modular electronics, MODI+."