Skip to content

Commit e91fc38

Browse files
authored
Bump version to 0.11.0 (#194)
* Bump version to 0.11.0 * Frontming's suggestions
1 parent c498531 commit e91fc38

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [0.11.0] - 2022-05-24
6+
7+
## Added
8+
9+
- Add `unwrap` methods that return tomlkit objects recursively converted to plain python objects. ([#43](https://github.com/sdispater/tomlkit/issues/43))
10+
511
## [0.10.2] - 2022-04-24
612

713
### Fixed
@@ -273,7 +279,8 @@
273279
- Fixed handling of super tables with different sections.
274280
- Fixed raw strings escaping.
275281

276-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.2...master
282+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.0...master
283+
[0.11.0]: https://github.com/sdispater/tomlkit/releases/tag/0.11.0
277284
[0.10.2]: https://github.com/sdispater/tomlkit/releases/tag/0.10.2
278285
[0.10.1]: https://github.com/sdispater/tomlkit/releases/tag/0.10.1
279286
[0.10.0]: https://github.com/sdispater/tomlkit/releases/tag/0.10.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.10.2"
3+
version = "0.11.0"
44
description = "Style preserving TOML library"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"

tomlkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from .api import ws
2626

2727

28-
__version__ = "0.10.2"
28+
__version__ = "0.11.0"
2929
__all__ = [
3030
"aot",
3131
"array",

0 commit comments

Comments
 (0)