From e91fc38b312e473a414733c13f56855a38c5c226 Mon Sep 17 00:00:00 2001 From: syntapy Date: Mon, 23 May 2022 23:45:53 -0700 Subject: [PATCH] Bump version to 0.11.0 (#194) * Bump version to 0.11.0 * Frontming's suggestions --- CHANGELOG.md | 9 ++++++++- pyproject.toml | 2 +- tomlkit/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64fa0b5e..8b5289ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.11.0] - 2022-05-24 + +## Added + +- Add `unwrap` methods that return tomlkit objects recursively converted to plain python objects. ([#43](https://github.com/sdispater/tomlkit/issues/43)) + ## [0.10.2] - 2022-04-24 ### Fixed @@ -273,7 +279,8 @@ - Fixed handling of super tables with different sections. - Fixed raw strings escaping. -[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.2...master +[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.0...master +[0.11.0]: https://github.com/sdispater/tomlkit/releases/tag/0.11.0 [0.10.2]: https://github.com/sdispater/tomlkit/releases/tag/0.10.2 [0.10.1]: https://github.com/sdispater/tomlkit/releases/tag/0.10.1 [0.10.0]: https://github.com/sdispater/tomlkit/releases/tag/0.10.0 diff --git a/pyproject.toml b/pyproject.toml index 6e230a4d..6e2ea44b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.10.2" +version = "0.11.0" description = "Style preserving TOML library" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 861e1f61..1f544225 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -25,7 +25,7 @@ from .api import ws -__version__ = "0.10.2" +__version__ = "0.11.0" __all__ = [ "aot", "array",