From 66f4e5d9ec71f4a6b3bf3a38c55e63c8b240f6df Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 25 Jan 2024 00:51:29 +0000 Subject: [PATCH] chore(release): 1.10.0 --- docs/changelog.md | 14 ++++++++++++++ pyproject.toml | 2 +- src/sugar/__init__.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 54973d3..f2c4f2f 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,20 @@ # Release Notes --- +# [1.10.0](https://github.com/osl-incubator/sugar/compare/1.9.3...1.10.0) (2024-01-25) + + +### Bug Fixes + +* change usage KxgrLogs for KxgrErrorType ([#107](https://github.com/osl-incubator/sugar/issues/107)) ([d8d38b2](https://github.com/osl-incubator/sugar/commit/d8d38b216b1baebc10d65b8a7830d5d3910bdea2)) +* Check if project-name is null ([#106](https://github.com/osl-incubator/sugar/issues/106)) ([82a93df](https://github.com/osl-incubator/sugar/commit/82a93dfc491136151ff63b943a6812811498153b)) + + +### Features + +* Add a new key in the root of the config file for services ([#110](https://github.com/osl-incubator/sugar/issues/110)) ([7e6eabc](https://github.com/osl-incubator/sugar/commit/7e6eabc81e755bb96863e49cae7e47109f918fc0)) +* Rename from sugar to core module name ([#101](https://github.com/osl-incubator/sugar/issues/101)) ([40dace1](https://github.com/osl-incubator/sugar/commit/40dace1be838aaaa31ed989cb20a331b84a97f5d)) + ## [1.9.3](https://github.com/osl-incubator/sugar/compare/1.9.2...1.9.3) (2023-12-24) diff --git a/pyproject.toml b/pyproject.toml index 353fa08..8a5bc48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "containers-sugar" -version = "1.9.3" # semantic-release +version = "1.10.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 437ecf2..15de8a6 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.9.3' # semantic-release +__version__ = '1.10.0' # semantic-release from sugar.core import Sugar # noqa: F401