diff --git a/docs/changelog.md b/docs/changelog.md index 5199439..a4683ec 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +# [1.18.0](https://github.com/osl-incubator/makim/compare/1.17.0...1.18.0) (2024-10-15) + + +### Features + +* Add matrix strategy ([#118](https://github.com/osl-incubator/makim/issues/118)) ([89894cf](https://github.com/osl-incubator/makim/commit/89894cf7ec10adf4cc0a8675382286fc5144b4fb)) + # [1.17.0](https://github.com/osl-incubator/makim/compare/1.16.0...1.17.0) (2024-10-08) diff --git a/pyproject.toml b/pyproject.toml index a22e3f6..6afa1ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "makim" -version = "1.17.0" # semantic-release +version = "1.18.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 ed827f9..1ddc3c1 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.17.0' # semantic-release +__version__ = '1.18.0' # semantic-release from makim.core import Makim # noqa: F401