Skip to content

Commit a678c2f

Browse files
committed
chore: bump version to 0.12.3
Signed-off-by: Frost Ming <[email protected]>
1 parent 238fec1 commit a678c2f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## [Unreleased]
44

5+
## [0.12.3] - 2023-11-15
6+
7+
### Fixed
8+
9+
- Improve the performance when parsing a table with nested dotted keys. ([#193](https://github.com/sdispater/tomlkit/issues/193))
10+
- Keep the newlines when replacing a table. ([#323](https://github.com/sdispater/tomlkit/issues/323))
11+
512
## [0.12.2] - 2023-11-02
613

714
### Fixed
@@ -375,6 +382,7 @@
375382
- Fixed raw strings escaping.
376383

377384
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.12.2...master
385+
[0.12.3]: https://github.com/sdispater/tomlkit/releases/tag/0.12.3
378386
[0.12.2]: https://github.com/sdispater/tomlkit/releases/tag/0.12.2
379387
[0.12.1]: https://github.com/sdispater/tomlkit/releases/tag/0.12.1
380388
[0.12.0]: https://github.com/sdispater/tomlkit/releases/tag/0.12.0

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.12.2"
3+
version = "0.12.3"
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
@@ -27,7 +27,7 @@
2727
from tomlkit.api import ws
2828

2929

30-
__version__ = "0.12.2"
30+
__version__ = "0.12.3"
3131
__all__ = [
3232
"aot",
3333
"array",

0 commit comments

Comments
 (0)