diff --git a/CHANGELOG.md b/CHANGELOG.md index 64fa0b5..8b5289e 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 6e230a4..6e2ea44 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 861e1f6..1f54422 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",