diff --git a/CHANGELOG.md b/CHANGELOG.md index a78c16b..80ba61f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # CHANGELOG +## v0.10.1 (2024-10-17) + +### Fixes + +* fix: correct import statement in maidr.py ([`e7d072a`](https://github.com/xability/py_maidr/commit/e7d072a3d94d573f06fd76c68cf57679f9c7584e)) + +* fix: address dynamic resizing of iframes on ipython (#123) ([`3159fc1`](https://github.com/xability/py_maidr/commit/3159fc1f4ccfff081f001bf41eff7b949b95a3c4)) + + ## v0.10.0 (2024-10-15) ### Code Style diff --git a/maidr/__init__.py b/maidr/__init__.py index 0857218..9cdf942 100644 --- a/maidr/__init__.py +++ b/maidr/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.0" +__version__ = "0.10.1" from .core import Maidr from .core.enum import PlotType diff --git a/pyproject.toml b/pyproject.toml index 424d729..98f9312 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ authors = [ "JooYoung Seo ", "Saairam Venkatesh " ] -version = "0.10.0" +version = "0.10.1" classifiers = [ "Intended Audience :: End Users/Desktop", "Intended Audience :: Financial and Insurance Industry",