Skip to content

Commit

Permalink
chore: prepare for release 0.11.3 (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
frostming committed Aug 10, 2022
1 parent 97487d2 commit 21f51a5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## [0.11.3] - 2022-08-10

### Fixed

- Fix a regression issue that copying an array results in extra `None` items. ([#221](https://github.com/sdispater/tomlkit/issues/221))
- 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))

## [0.11.2] - 2022-08-08

### Fixed
Expand Down Expand Up @@ -300,7 +307,8 @@
- Fixed handling of super tables with different sections.
- Fixed raw strings escaping.

[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.2...master
[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.3...master
[0.11.3]: https://github.com/sdispater/tomlkit/releases/tag/0.11.3
[0.11.2]: https://github.com/sdispater/tomlkit/releases/tag/0.11.2
[0.11.1]: https://github.com/sdispater/tomlkit/releases/tag/0.11.1
[0.11.0]: https://github.com/sdispater/tomlkit/releases/tag/0.11.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tomlkit"
version = "0.11.2"
version = "0.11.3"
description = "Style preserving TOML library"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_items.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import copy
import math
import pickle
import copy

from datetime import date
from datetime import datetime
Expand Down
2 changes: 1 addition & 1 deletion tomlkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from tomlkit.api import ws


__version__ = "0.11.2"
__version__ = "0.11.3"
__all__ = [
"aot",
"array",
Expand Down

0 comments on commit 21f51a5

Please sign in to comment.