From a4d43a772490f28b16bc2964888a103783de3a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Thu, 20 May 2021 22:22:51 +0200 Subject: [PATCH] Bump version to 0.7.2 --- CHANGELOG.md | 11 ++++++++++- pyproject.toml | 2 +- tomlkit/__init__.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b575540..0f1e88a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [0.7.2] - 2021-05-20 + +### Fixed + +- Fixed an error where container's data were lost when copying. ([#126](https://github.com/sdispater/tomlkit/pull/126)) +- Fixed missing tests in the source distribution of the package. ([#127](https://github.com/sdispater/tomlkit/pull/127)) + + ## [0.7.1] - 2021-05-19 ### Fixed @@ -217,7 +225,8 @@ - Fixed raw strings escaping. -[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.7.1...master +[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.7.2...master +[0.7.2]: https://github.com/sdispater/tomlkit/releases/tag/0.7.2 [0.7.1]: https://github.com/sdispater/tomlkit/releases/tag/0.7.1 [0.7.0]: https://github.com/sdispater/tomlkit/releases/tag/0.7.0 [0.6.0]: https://github.com/sdispater/tomlkit/releases/tag/0.6.0 diff --git a/pyproject.toml b/pyproject.toml index d086070..b2bc115 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.7.1" +version = "0.7.2" description = "Style preserving TOML library" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 650c9c2..110d6c1 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -22,4 +22,4 @@ from .api import ws -__version__ = "0.7.1" +__version__ = "0.7.2"