Skip to content

Commit

Permalink
Bump version to 0.11.0 (#194)
Browse files Browse the repository at this point in the history
* Bump version to 0.11.0

* Frontming's suggestions
  • Loading branch information
syntapy committed May 24, 2022
1 parent c498531 commit e91fc38
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.11.0] - 2022-05-24

## Added

- Add `unwrap` methods that return tomlkit objects recursively converted to plain python objects. ([#43](https://github.com/sdispater/tomlkit/issues/43))

## [0.10.2] - 2022-04-24

### Fixed
Expand Down Expand Up @@ -273,7 +279,8 @@
- Fixed handling of super tables with different sections.
- Fixed raw strings escaping.

[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.2...master
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.0...master
[0.11.0]: https://github.com/sdispater/tomlkit/releases/tag/0.11.0
[0.10.2]: https://github.com/sdispater/tomlkit/releases/tag/0.10.2
[0.10.1]: https://github.com/sdispater/tomlkit/releases/tag/0.10.1
[0.10.0]: https://github.com/sdispater/tomlkit/releases/tag/0.10.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tomlkit"
version = "0.10.2"
version = "0.11.0"
description = "Style preserving TOML library"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tomlkit/__init__.py
Expand Up @@ -25,7 +25,7 @@
from .api import ws


__version__ = "0.10.2"
__version__ = "0.11.0"
__all__ = [
"aot",
"array",
Expand Down

0 comments on commit e91fc38

Please sign in to comment.