diff --git a/docs/changelog.md b/docs/changelog.md index 2922e31..f45a61b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +# [1.14.0](https://github.com/osl-incubator/makim/compare/1.13.0...1.14.0) (2024-03-18) + + +### Features + +* Change the default template tag delimiter ([#97](https://github.com/osl-incubator/makim/issues/97)) ([7037195](https://github.com/osl-incubator/makim/commit/703719594d93bbc19d440b17785d917220e02b4c)) + # [1.13.0](https://github.com/osl-incubator/makim/compare/1.12.2...1.13.0) (2024-02-16) diff --git a/pyproject.toml b/pyproject.toml index d72a418..be7702b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "makim" -version = "1.13.0" # semantic-release +version = "1.14.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 e4052a8..a905741 100644 --- a/src/makim/__init__.py +++ b/src/makim/__init__.py @@ -3,7 +3,7 @@ __author__ = 'Ivan Ogasawara' __email__ = 'ivan.ogasawara@gmail.com' -__version__ = '1.13.0' # semantic-release +__version__ = '1.14.0' # semantic-release from makim.core import Makim # noqa: F401