Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.11.0 #194

Merged
merged 3 commits into from May 24, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [0.11.0] - 2022-05-25
syntapy marked this conversation as resolved.
Show resolved Hide resolved

## Fixed
syntapy marked this conversation as resolved.
Show resolved Hide resolved

- 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 @@ -274,6 +280,7 @@
- Fixed raw strings escaping.

[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.2...master
syntapy marked this conversation as resolved.
Show resolved Hide resolved
[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