Skip to content

Commit 957a98f

Browse files
authored
Prepare for release 0.11.2 (#220)
1 parent f5b1cdc commit 957a98f

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [Unreleased]
4+
5+
## [0.11.2] - 2022-08-08
6+
7+
### Fixed
8+
9+
- Fix adding float to an integer value. ([#215](https://github.com/sdispater/tomlkit/issues/215))
10+
- Keep the end-of-array style when adding items to or removing items from an array. ([#213](https://github.com/sdispater/tomlkit/issues/213), [#216](https://github.com/sdispater/tomlkit/issues/216))
11+
- Fix a bug of redundant table header shown when removing children from a super table. ([#217](https://github.com/sdispater/tomlkit/issues/219))
12+
313
## [0.11.1] - 2022-07-07
414

515
### Changed
@@ -10,6 +20,7 @@
1020
- Raise errors when trying to access unsupported methods on `OutOfOrderTableProxy`. ([#205](https://github.com/sdispater/tomlkit/issues/205))
1121

1222
### Fixed
23+
1324
- Fix `unwrap()` for String values to remove the quotes. ([#199](https://github.com/sdispater/tomlkit/issues/199))
1425

1526
## [0.11.0] - 2022-05-24
@@ -289,7 +300,8 @@
289300
- Fixed handling of super tables with different sections.
290301
- Fixed raw strings escaping.
291302

292-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.1...master
303+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.2...master
304+
[0.11.2]: https://github.com/sdispater/tomlkit/releases/tag/0.11.2
293305
[0.11.1]: https://github.com/sdispater/tomlkit/releases/tag/0.11.1
294306
[0.11.0]: https://github.com/sdispater/tomlkit/releases/tag/0.11.0
295307
[0.10.2]: https://github.com/sdispater/tomlkit/releases/tag/0.10.2

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.1"
3+
version = "0.11.2"
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.1"
28+
__version__ = "0.11.2"
2929
__all__ = [
3030
"aot",
3131
"array",

0 commit comments

Comments
 (0)