Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare for release 0.11.3 #224

Merged
merged 3 commits into from Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
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
@@ -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
@@ -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
Expand Up @@ -25,7 +25,7 @@
from tomlkit.api import ws


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