From a63be71cb2b33bdb588592970e2c76288fd4e4f0 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Thu, 27 Apr 2023 18:38:13 +0800 Subject: [PATCH] Release 0.11.8 (#285) --- CHANGELOG.md | 12 ++++++++++-- pyproject.toml | 2 +- tomlkit/__init__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa5cbf10..781e0ff6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log -## [Unreleased] +## [0.11.8] - 2023-04-27 + +### Fixed + +- Remove the extra indentations added when parsing nested sub-tables. ([#256](https://github.com/sdispater/tomlkit/issues/256)) +- Ignore the CRLF immediately following a multiple basic string opening. ([#262](https://github.com/sdispater/tomlkit/issues/262)) +- Stringifying subtables and nested tables in arrays of tables. ([#283](https://github.com/sdispater/tomlkit/issues/283)) +- Messed table structure when building a table with dotted keys. ([#284](https://github.com/sdispater/tomlkit/issues/284)) ## [0.11.7] - 2023-03-27 @@ -339,7 +346,8 @@ - Fixed handling of super tables with different sections. - Fixed raw strings escaping. -[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.7...master +[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.8...master +[0.11.8]: https://github.com/sdispater/tomlkit/releases/tag/0.11.8 [0.11.7]: https://github.com/sdispater/tomlkit/releases/tag/0.11.7 [0.11.6]: https://github.com/sdispater/tomlkit/releases/tag/0.11.6 [0.11.5]: https://github.com/sdispater/tomlkit/releases/tag/0.11.5 diff --git a/pyproject.toml b/pyproject.toml index edae3375..2ce869b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.11.7" +version = "0.11.8" description = "Style preserving TOML library" authors = [ "Sébastien Eustace ", diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index a8eb61e7..acc7046c 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -25,7 +25,7 @@ from tomlkit.api import ws -__version__ = "0.11.7" +__version__ = "0.11.8" __all__ = [ "aot", "array",