diff --git a/docs/changelog.md b/docs/changelog.md index 6290346..690f475 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +## [1.14.1](https://github.com/osl-incubator/sugar/compare/1.14.0...1.14.1) (2024-09-27) + + +### Bug Fixes + +* fix the jinja2 template in the config file ([#125](https://github.com/osl-incubator/sugar/issues/125)) ([142b2b7](https://github.com/osl-incubator/sugar/commit/142b2b77662360fc4964a1c7e7f1c8eec7cbbb61)) + # [1.14.0](https://github.com/osl-incubator/sugar/compare/1.13.0...1.14.0) (2024-07-24) diff --git a/pyproject.toml b/pyproject.toml index 6f7f88e..0e9bbe8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "containers-sugar" -version = "1.14.0" # semantic-release +version = "1.14.1" # semantic-release description = "Simplify the usage of containers" readme = "README.md" authors = ["Ivan Ogasawara "] diff --git a/src/sugar/__init__.py b/src/sugar/__init__.py index d7e4572..5561d3e 100644 --- a/src/sugar/__init__.py +++ b/src/sugar/__init__.py @@ -2,7 +2,7 @@ __author__ = 'Ivan Ogasawara' __email__ = 'ivan.ogasawara@gmail.com' -__version__ = '1.14.0' # semantic-release +__version__ = '1.14.1' # semantic-release from sugar.core import Sugar # noqa: F401