diff --git a/CHANGELOG.md b/CHANGELOG.md index d52a565..2527294 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [0.11.3] - 2022-08-10 + +### Fixed + +- Fix a regression issue that copying an array results in extra `None` items. ([#221](https://github.com/sdispater/tomlkit/issues/221)) +- Fix a regression of `array.add_line` that it incorrectly adds a comma to non-value lines. ([#223](https://github.com/sdispater/tomlkit/issues/223)) + ## [0.11.2] - 2022-08-08 ### Fixed @@ -300,7 +307,8 @@ - Fixed handling of super tables with different sections. - Fixed raw strings escaping. -[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.2...master +[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.3...master +[0.11.3]: https://github.com/sdispater/tomlkit/releases/tag/0.11.3 [0.11.2]: https://github.com/sdispater/tomlkit/releases/tag/0.11.2 [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 diff --git a/pyproject.toml b/pyproject.toml index 3efa017..71c20a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.11.2" +version = "0.11.3" description = "Style preserving TOML library" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/tests/test_items.py b/tests/test_items.py index f2e9f89..e6d7df7 100644 --- a/tests/test_items.py +++ b/tests/test_items.py @@ -1,6 +1,6 @@ +import copy import math import pickle -import copy from datetime import date from datetime import datetime diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 91e62be..981720f 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -25,7 +25,7 @@ from tomlkit.api import ws -__version__ = "0.11.2" +__version__ = "0.11.3" __all__ = [ "aot", "array",