Skip to content

Commit 3f48f7e

Browse files
committed
Release 0.11.7 (#278)
Signed-off-by: Frost Ming <[email protected]>
1 parent 14230ea commit 3f48f7e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
## [Unreleased]
44

5+
## [0.11.7] - 2023-03-27
56

67
### Fixed
78

89
- Parse empty table name if it is quoted. ([#258](https://github.com/sdispater/tomlkit/issues/258))
910
- Fix a bug that remove last element of an Inline Table leaves a comma. ([#259](https://github.com/sdispater/tomlkit/issues/259))
1011
- Parse datetime when it is followed by a space. ([#260](https://github.com/sdispater/tomlkit/issues/260))
1112
- 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))
13+
- Fix the wrong return type when doing arithmetic operations between integers and floats. ([#270](https://github.com/sdispater/tomlkit/issues/270))
1214

1315
## [0.11.6] - 2022-10-27
1416

@@ -337,7 +339,8 @@
337339
- Fixed handling of super tables with different sections.
338340
- Fixed raw strings escaping.
339341

340-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.6...master
342+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.7...master
343+
[0.11.7]: https://github.com/sdispater/tomlkit/releases/tag/0.11.7
341344
[0.11.6]: https://github.com/sdispater/tomlkit/releases/tag/0.11.6
342345
[0.11.5]: https://github.com/sdispater/tomlkit/releases/tag/0.11.5
343346
[0.11.4]: https://github.com/sdispater/tomlkit/releases/tag/0.11.4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tomlkit"
3-
version = "0.11.6"
3+
version = "0.11.7"
44
description = "Style preserving TOML library"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"

tomlkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from tomlkit.api import ws
2626

2727

28-
__version__ = "0.11.6"
28+
__version__ = "0.11.7"
2929
__all__ = [
3030
"aot",
3131
"array",

0 commit comments

Comments
 (0)