diff --git a/docs/changelog.md b/docs/changelog.md index 72d56b2..9ad7f6e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +## [1.15.2](https://github.com/osl-incubator/makim/compare/1.15.1...1.15.2) (2024-05-07) + + +### Bug Fixes + +* Change rich lower bound pin to >=10.11.0 ([#108](https://github.com/osl-incubator/makim/issues/108)) ([d533213](https://github.com/osl-incubator/makim/commit/d53321347541184eb877c18d1d446c59e8900305)) + ## [1.15.1](https://github.com/osl-incubator/makim/compare/1.15.0...1.15.1) (2024-05-02) diff --git a/pyproject.toml b/pyproject.toml index 64393d0..0924b75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "makim" -version = "1.15.1" # semantic-release +version = "1.15.2" # semantic-release description = "Simplify the usage of containers" authors = ["Ivan Ogasawara "] license = "BSD 3 Clause" diff --git a/src/makim/__init__.py b/src/makim/__init__.py index 33733c3..b894f99 100644 --- a/src/makim/__init__.py +++ b/src/makim/__init__.py @@ -2,7 +2,7 @@ __author__ = 'Ivan Ogasawara' __email__ = 'ivan.ogasawara@gmail.com' -__version__ = '1.15.1' # semantic-release +__version__ = '1.15.2' # semantic-release from makim.core import Makim # noqa: F401