Skip to content

Commit 721acca

Browse files
authored
Merge pull request #191 from sdispater/release/0.10.2
Bump version to 0.10.2
2 parents 1621fa5 + 094b458 commit 721acca

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.10.2] - 2022-04-24
6+
57
### Fixed
68

79
- Use the plain python string representation of `Key` in `KeyAlreadyPresent` error message. ([#185](https://github.com/sdispater/tomlkit/issues/185))
@@ -271,7 +273,8 @@
271273
- Fixed handling of super tables with different sections.
272274
- Fixed raw strings escaping.
273275

274-
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.1...master
276+
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.2...master
277+
[0.10.2]: https://github.com/sdispater/tomlkit/releases/tag/0.10.2
275278
[0.10.1]: https://github.com/sdispater/tomlkit/releases/tag/0.10.1
276279
[0.10.0]: https://github.com/sdispater/tomlkit/releases/tag/0.10.0
277280
[0.9.2]: https://github.com/sdispater/tomlkit/releases/tag/0.9.2

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.1"
3+
version = "0.10.2"
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.1"
28+
__version__ = "0.10.2"
2929
__all__ = [
3030
"aot",
3131
"array",

0 commit comments

Comments
 (0)