From 08a47bc7e9c226066888d65cfa6bdffa49b23231 Mon Sep 17 00:00:00 2001 From: Frost Ming Date: Mon, 27 Mar 2023 15:35:16 +0800 Subject: [PATCH] Release 0.11.7 (#278) --- CHANGELOG.md | 5 ++++- tomlkit/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d6ac555..aa5cbf10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [Unreleased] +## [0.11.7] - 2023-03-27 ### Fixed @@ -9,6 +10,7 @@ - Fix a bug that remove last element of an Inline Table leaves a comma. ([#259](https://github.com/sdispater/tomlkit/issues/259)) - Parse datetime when it is followed by a space. ([#260](https://github.com/sdispater/tomlkit/issues/260)) - Fix the `unwrap()` method for `Container` children values which sometimes returns an internal object if the table is an out-of-order table. ([#264](https://github.com/sdispater/tomlkit/issues/264)) +- Fix the wrong return type when doing arithmetic operations between integers and floats. ([#270](https://github.com/sdispater/tomlkit/issues/270)) ## [0.11.6] - 2022-10-27 @@ -337,7 +339,8 @@ - Fixed handling of super tables with different sections. - Fixed raw strings escaping. -[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.6...master +[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.7...master +[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 [0.11.4]: https://github.com/sdispater/tomlkit/releases/tag/0.11.4 diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 584bd96d..a8eb61e7 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -25,7 +25,7 @@ from tomlkit.api import ws -__version__ = "0.11.6" +__version__ = "0.11.7" __all__ = [ "aot", "array",