Skip to content

Commit 27ad8ff

Browse files
committed
chore: release 0.12.0
Signed-off-by: Frost Ming <[email protected]>
1 parent e2adb95 commit 27ad8ff

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

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

3+
## [0.12.0] - 2023-07-27
4+
5+
### Added
6+
7+
- Allow users to specify encoders for custom types. ([#296](https://github.com/sdispater/tomlkit/issues/296))
8+
9+
### Fixed
10+
11+
- Fix the incorrect sort when building a table with dotted keys.
12+
- Complete the methods required for integer and float items. ([#307](https://github.com/sdispater/tomlkit/issues/307))
13+
- Replace the deprecated usage of `datetime.utcnow()`. ([#308](https://github.com/sdispater/tomlkit/issues/308))
14+
- Minor performance improvements when iterating over the escape sequences. ([#304](https://github.com/sdispater/tomlkit/issues/304))
15+
316
## [0.11.8] - 2023-04-27
417

518
### Fixed
@@ -346,7 +359,8 @@
346359
- Fixed handling of super tables with different sections.
347360
- Fixed raw strings escaping.
348361

349-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.8...master
362+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.12.0...master
363+
[0.12.0]: https://github.com/sdispater/tomlkit/releases/tag/0.12.0
350364
[0.11.8]: https://github.com/sdispater/tomlkit/releases/tag/0.11.8
351365
[0.11.7]: https://github.com/sdispater/tomlkit/releases/tag/0.11.7
352366
[0.11.6]: https://github.com/sdispater/tomlkit/releases/tag/0.11.6

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.8"
3+
version = "0.12.0"
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.11.8"
30+
__version__ = "0.12.0"
3131
__all__ = [
3232
"aot",
3333
"array",

0 commit comments

Comments
 (0)