diff --git a/docs/changelog.md b/docs/changelog.md index 19ed367..c919373 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +# [1.13.0](https://github.com/osl-incubator/sugar/compare/1.12.0...1.13.0) (2024-05-16) + + +### Features + +* **experimental:** Add new docker compose commands: attach, cp, ls, scale, wait, watch ([#122](https://github.com/osl-incubator/sugar/issues/122)) ([4a28eee](https://github.com/osl-incubator/sugar/commit/4a28eeed3bc279c0e0ca9cb21a9b4fa2c2e1767a)) + # [1.12.0](https://github.com/osl-incubator/sugar/compare/1.11.4...1.12.0) (2024-05-10) diff --git a/pyproject.toml b/pyproject.toml index 1348449..751df0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "containers-sugar" -version = "1.12.0" # semantic-release +version = "1.13.0" # 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 8917153..d625fae 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.12.0' # semantic-release +__version__ = '1.13.0' # semantic-release from sugar.core import Sugar # noqa: F401