diff --git a/CHANGELOG.md b/CHANGELOG.md index 0395f5cb..aa965117 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] +## [0.4.5] - 2018-10-12 ### Fixed @@ -76,7 +76,8 @@ - Fixed raw strings escaping. -[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.4.4...master +[Unreleased]: https://github.com/sdispater/tomlkit/compare/0.4.5...master +[0.4.5]: https://github.com/sdispater/tomlkit/releases/tag/0.4.5 [0.4.4]: https://github.com/sdispater/tomlkit/releases/tag/0.4.4 [0.4.3]: https://github.com/sdispater/tomlkit/releases/tag/0.4.3 [0.4.2]: https://github.com/sdispater/tomlkit/releases/tag/0.4.2 diff --git a/pyproject.toml b/pyproject.toml index d728db76..5d4c37f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tomlkit" -version = "0.4.4" +version = "0.4.5" description = "Style preserving TOML library" authors = ["Sébastien Eustace "] license = "MIT" diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py index 23d4ef74..b503d97f 100644 --- a/tomlkit/__init__.py +++ b/tomlkit/__init__.py @@ -22,4 +22,4 @@ from .api import ws -__version__ = "0.4.4" +__version__ = "0.4.5"