File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 0.11.3] - 2022-08-10
6+
7+ ### Fixed
8+
9+ - Fix a regression issue that copying an array results in extra ` None ` items. ([ #221 ] ( https://github.com/sdispater/tomlkit/issues/221 ) )
10+ - Fix a regression of ` array.add_line ` that it incorrectly adds a comma to non-value lines. ([ #223 ] ( https://github.com/sdispater/tomlkit/issues/223 ) )
11+
512## [ 0.11.2] - 2022-08-08
613
714### Fixed
300307- Fixed handling of super tables with different sections.
301308- Fixed raw strings escaping.
302309
303- [ unreleased ] : https://github.com/sdispater/tomlkit/compare/0.11.2...master
310+ [ unreleased ] : https://github.com/sdispater/tomlkit/compare/0.11.3...master
311+ [ 0.11.3 ] : https://github.com/sdispater/tomlkit/releases/tag/0.11.3
304312[ 0.11.2 ] : https://github.com/sdispater/tomlkit/releases/tag/0.11.2
305313[ 0.11.1 ] : https://github.com/sdispater/tomlkit/releases/tag/0.11.1
306314[ 0.11.0 ] : https://github.com/sdispater/tomlkit/releases/tag/0.11.0
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " tomlkit"
3- version = " 0.11.2 "
3+ version = " 0.11.3 "
44description = " Style preserving TOML library"
55authors = [
" Sébastien Eustace <[email protected] >" ]
66license = " MIT"
Original file line number Diff line number Diff line change 1+ import copy
12import math
23import pickle
3- import copy
44
55from datetime import date
66from datetime import datetime
Original file line number Diff line number Diff line change 2525from tomlkit .api import ws
2626
2727
28- __version__ = "0.11.2 "
28+ __version__ = "0.11.3 "
2929__all__ = [
3030 "aot" ,
3131 "array" ,
You can’t perform that action at this time.
0 commit comments