Skip to content

Commit 21f51a5

Browse files
authored
chore: prepare for release 0.11.3 (#224)
1 parent 97487d2 commit 21f51a5

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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
@@ -300,7 +307,8 @@
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

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.11.2"
3+
version = "0.11.3"
44
description = "Style preserving TOML library"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"

tests/test_items.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import copy
12
import math
23
import pickle
3-
import copy
44

55
from datetime import date
66
from datetime import datetime

tomlkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from tomlkit.api import ws
2626

2727

28-
__version__ = "0.11.2"
28+
__version__ = "0.11.3"
2929
__all__ = [
3030
"aot",
3131
"array",

0 commit comments

Comments
 (0)