diff --git a/docs/changelog.md b/docs/changelog.md index 1add67e..8374d7c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +## [1.11.1](https://github.com/osl-incubator/sugar/compare/1.11.0...1.11.1) (2024-02-04) + + +### Bug Fixes + +* Fix initial configuration for stats plot ([#114](https://github.com/osl-incubator/sugar/issues/114)) ([4faef7c](https://github.com/osl-incubator/sugar/commit/4faef7c423ab39655c89dde94175eb3e84e0e3e5)) + # [1.11.0](https://github.com/osl-incubator/sugar/compare/1.10.0...1.11.0) (2024-02-04) diff --git a/pyproject.toml b/pyproject.toml index 730a774..5e20eb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "containers-sugar" -version = "1.11.0" # semantic-release +version = "1.11.1" # 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 93586bd..301864e 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.11.0' # semantic-release +__version__ = '1.11.1' # semantic-release from sugar.core import Sugar # noqa: F401