Skip to content

Commit 86b61f2

Browse files
authored
Release 0.11.5 (#242)
1 parent 5b75203 commit 86b61f2

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22

33
## [Unreleased]
44

5+
## [0.11.5] - 2022-09-28
6+
57
### Fixed
68

9+
- Fix the type annotation of `unwrap()` and datetime parsing. ([#229](https://github.com/sdispater/tomlkit/issues/229))
710
- Clear the existing table header when it is adding to another table. ([#230](https://github.com/sdispater/tomlkit/issues/230))
11+
- Fix a bug that escape chars are lost after concat with another string. ([#235](https://github.com/sdispater/tomlkit/issues/235))
12+
- Fix a rendering issue of tables inside arrays or inline tables. ([#236](https://github.com/sdispater/tomlkit/issues/236))
813

914
## [0.11.4] - 2022-08-12
1015

@@ -317,7 +322,8 @@
317322
- Fixed handling of super tables with different sections.
318323
- Fixed raw strings escaping.
319324

320-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.4...master
325+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.5...master
326+
[0.11.5]: https://github.com/sdispater/tomlkit/releases/tag/0.11.5
321327
[0.11.4]: https://github.com/sdispater/tomlkit/releases/tag/0.11.4
322328
[0.11.3]: https://github.com/sdispater/tomlkit/releases/tag/0.11.3
323329
[0.11.2]: https://github.com/sdispater/tomlkit/releases/tag/0.11.2

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tomlkit"
3-
version = "0.11.4"
3+
version = "0.11.5"
44
description = "Style preserving TOML library"
55
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
66
license = "MIT"

tomlkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from tomlkit.api import ws
2626

2727

28-
__version__ = "0.11.4"
28+
__version__ = "0.11.5"
2929
__all__ = [
3030
"aot",
3131
"array",

0 commit comments

Comments
 (0)