Skip to content

Commit 92991bc

Browse files
authored
Bump version to 0.5.9 (#77)
1 parent cc89aca commit 92991bc

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## [0.5.9] - 2020-02-28
4+
5+
### Fixed
6+
7+
- Fixed the behavior for out of order tables ([#68](https://github.com/sdispater/tomlkit/pull/68)).
8+
- Fixed parsing errors when single quotes are present in a table name ([#71](https://github.com/sdispater/tomlkit/pull/71)).
9+
- Fixed parsing errors when parsing some table names ([#76](https://github.com/sdispater/tomlkit/pull/76)).
10+
11+
312
## [0.5.8] - 2019-10-11
413

514
### Added
@@ -160,7 +169,8 @@
160169
- Fixed raw strings escaping.
161170

162171

163-
[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.5.8...master
172+
[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.5.9...master
173+
[0.5.9]: https://github.com/sdispater/tomlkit/releases/tag/0.5.9
164174
[0.5.8]: https://github.com/sdispater/tomlkit/releases/tag/0.5.8
165175
[0.5.7]: https://github.com/sdispater/tomlkit/releases/tag/0.5.7
166176
[0.5.6]: https://github.com/sdispater/tomlkit/releases/tag/0.5.6

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.5.8"
3+
version = "0.5.9"
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
@@ -22,4 +22,4 @@
2222
from .api import ws
2323

2424

25-
__version__ = "0.5.8"
25+
__version__ = "0.5.9"

0 commit comments

Comments
 (0)