diff --git a/CHANGELOG.md b/CHANGELOG.md index f19b4b18..9acf18f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] +## [0.5.3] - 2018-11-19 ### Fixed @@ -120,7 +120,8 @@ - Fixed raw strings escaping. -[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.5.2...master +[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.5.3...master +[0.5.3]: https://github.com/sdispater/tomlkit/releases/tag/0.5.3 [0.5.2]: https://github.com/sdispater/tomlkit/releases/tag/0.5.2 [0.5.1]: https://github.com/sdispater/tomlkit/releases/tag/0.5.1 [0.5.0]: https://github.com/sdispater/tomlkit/releases/tag/0.5.0 diff --git a/pyproject.toml b/pyproject.toml index df6bd8a4..9b34c834 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.5.2" +version = "0.5.3" description = "Style preserving TOML library" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 92bfa27c..9ab90e0a 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -22,4 +22,4 @@ from .api import ws -__version__ = "0.5.2" +__version__ = "0.5.3"