diff --git a/CHANGELOG.md b/CHANGELOG.md index 0005356..6c06793 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,17 @@ # Change Log -## [Unreleased] +## [0.11.1] - 2022-07-07 -### Fixed +### Changed -- Fix `unwrap()` for String values to remove the quotes. ([#199](https://github.com/sdispater/tomlkit/issues/199)) +- Keep consistent line endings when changing files. ([#201](https://github.com/sdispater/tomlkit/issues/201)) - Make `KeyAlreadyPresent` and `InvalidStringError` subclasses of `ParseError`. ([#202](https://github.com/sdispater/tomlkit/issues/202)) - Remove empty table from `OutOfOrderTableProxy` when deleting items. ([#204](https://github.com/sdispater/tomlkit/issues/204)) - Raise errors when trying to access unsupported methods on `OutOfOrderTableProxy`. ([#205](https://github.com/sdispater/tomlkit/issues/205)) +### Fixed +- Fix `unwrap()` for String values to remove the quotes. ([#199](https://github.com/sdispater/tomlkit/issues/199)) + ## [0.11.0] - 2022-05-24 ### Added @@ -286,7 +289,8 @@ - Fixed handling of super tables with different sections. - Fixed raw strings escaping. -[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.0...master +[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.1...master +[0.11.1]: https://github.com/sdispater/tomlkit/releases/tag/0.11.1 [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 diff --git a/pyproject.toml b/pyproject.toml index 6e2ea44..f743034 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.11.0" +version = "0.11.1" description = "Style preserving TOML library" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 1f54422..1abb1eb 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -25,7 +25,7 @@ from .api import ws -__version__ = "0.11.0" +__version__ = "0.11.1" __all__ = [ "aot", "array",