diff --git a/docs/changelog.md b/docs/changelog.md index 9ad7f6e..a7e481d 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +# [1.16.0](https://github.com/osl-incubator/makim/compare/1.15.2...1.16.0) (2024-07-24) + + +### Features + +* **help:** Organize tasks by group inside the help menu ([#109](https://github.com/osl-incubator/makim/issues/109)) ([2cd746c](https://github.com/osl-incubator/makim/commit/2cd746c3a57fb0de0333d94c61063aca95f12967)) + ## [1.15.2](https://github.com/osl-incubator/makim/compare/1.15.1...1.15.2) (2024-05-07) diff --git a/pyproject.toml b/pyproject.toml index 0924b75..e9f3851 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "makim" -version = "1.15.2" # semantic-release +version = "1.16.0" # 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 b894f99..a4f669a 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.2' # semantic-release +__version__ = '1.16.0' # semantic-release from makim.core import Makim # noqa: F401