Skip to content

Commit a63be71

Browse files
authored
Release 0.11.8 (#285)
1 parent f14e9c7 commit a63be71

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [0.11.8] - 2023-04-27
4+
5+
### Fixed
6+
7+
- Remove the extra indentations added when parsing nested sub-tables. ([#256](https://github.com/sdispater/tomlkit/issues/256))
8+
- Ignore the CRLF immediately following a multiple basic string opening. ([#262](https://github.com/sdispater/tomlkit/issues/262))
9+
- Stringifying subtables and nested tables in arrays of tables. ([#283](https://github.com/sdispater/tomlkit/issues/283))
10+
- Messed table structure when building a table with dotted keys. ([#284](https://github.com/sdispater/tomlkit/issues/284))
411

512
## [0.11.7] - 2023-03-27
613

@@ -339,7 +346,8 @@
339346
- Fixed handling of super tables with different sections.
340347
- Fixed raw strings escaping.
341348

342-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.7...master
349+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.8...master
350+
[0.11.8]: https://github.com/sdispater/tomlkit/releases/tag/0.11.8
343351
[0.11.7]: https://github.com/sdispater/tomlkit/releases/tag/0.11.7
344352
[0.11.6]: https://github.com/sdispater/tomlkit/releases/tag/0.11.6
345353
[0.11.5]: https://github.com/sdispater/tomlkit/releases/tag/0.11.5

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.7"
3+
version = "0.11.8"
44
description = "Style preserving TOML library"
55
authors = [
66
"Sébastien Eustace <[email protected]>",

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

0 commit comments

Comments
 (0)