-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Change Log | ||
|
||
## [0.3.0] - 2018-07-20 | ||
|
||
### Changed | ||
|
||
- Make new dicts automatically sorted when dumped. | ||
- Improved new elements placement when building. | ||
- Automatically convert lists of dicts to arrays of tables. | ||
- No longer add a new line before standalone tables. | ||
- Make arrays behave (mostly) like lists. | ||
|
||
### Fixed | ||
|
||
- Fixed string parsing when before last char is a backslash character. | ||
- Fixed handling of array of tables after sub tables. | ||
- Fixed table display order. | ||
- Fixed handling of super tables with different sections. | ||
- Fixed raw strings escaping. | ||
|
||
|
||
[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.3.0...master | ||
[0.3.0]: https://github.com/sdispater/tomlkit/releases/tag/0.3.0 | ||
[0.2.0]: https://github.com/sdispater/tomlkit/releases/tag/0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "tomlkit" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
description = "Style preserving TOML library" | ||
authors = ["Sébastien Eustace <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
from .api import ws | ||
|
||
|
||
__version__ = "0.2.0" | ||
__version__ = "0.3.0" |