diff --git a/docs/changelog.md b/docs/changelog.md index f2c4f2f..1add67e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +# [1.11.0](https://github.com/osl-incubator/sugar/compare/1.10.0...1.11.0) (2024-02-04) + + +### Features + +* Add stats plot command ([#113](https://github.com/osl-incubator/sugar/issues/113)) ([15d92cc](https://github.com/osl-incubator/sugar/commit/15d92ccca17375c77460ac732cf25e9e627c32f6)) + # [1.10.0](https://github.com/osl-incubator/sugar/compare/1.9.3...1.10.0) (2024-01-25) diff --git a/pyproject.toml b/pyproject.toml index 902aabf..8d26adb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "containers-sugar" -version = "1.10.0" # semantic-release +version = "1.11.0" # semantic-release description = "Simplify the usage of containers" authors = ["Ivan Ogasawara "] license = "BSD 3 Clause" diff --git a/src/sugar/__init__.py b/src/sugar/__init__.py index 15de8a6..93586bd 100644 --- a/src/sugar/__init__.py +++ b/src/sugar/__init__.py @@ -3,7 +3,7 @@ __author__ = 'Ivan Ogasawara' __email__ = 'ivan.ogasawara@gmail.com' -__version__ = '1.10.0' # semantic-release +__version__ = '1.11.0' # semantic-release from sugar.core import Sugar # noqa: F401