Skip to content

Commit 4d06dff

Browse files
committed
chore: bump version to 0.13.0
Signed-off-by: Frost Ming <[email protected]>
1 parent 85aaf7a commit 4d06dff

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
## [unreleased]
44

5+
## [0.13.0] - 2024-07-10
6+
57
### Changed
68

79
- Expect a tomlkit-specific error instead of `TypeError` from a custom encoder. ([#355](https://github.com/python-poetry/tomlkit/issues/355))
8-
- Remove 3.7 from the CI matrix.
10+
- Drop support for Python older than 3.8. Remove 3.7 from the CI matrix.
911

1012
### Fixed
1113

@@ -407,7 +409,8 @@
407409
- Fixed handling of super tables with different sections.
408410
- Fixed raw strings escaping.
409411

410-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.12.5...master
412+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.13.0...master
413+
[0.13.0]: https://github.com/sdispater/tomlkit/releases/tag/0.13.0
411414
[0.12.5]: https://github.com/sdispater/tomlkit/releases/tag/0.12.5
412415
[0.12.4]: https://github.com/sdispater/tomlkit/releases/tag/0.12.4
413416
[0.12.3]: https://github.com/sdispater/tomlkit/releases/tag/0.12.3

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.5"
3+
version = "0.13.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.12.5"
30+
__version__ = "0.13.0"
3131
__all__ = [
3232
"aot",
3333
"array",

0 commit comments

Comments
 (0)