Release 0.11.5 (#242)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c0563e6..c417750 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,14 @@
 
 ## [Unreleased]
 
+## [0.11.5] - 2022-09-28
+
 ### Fixed
 
+- Fix the type annotation of `unwrap()` and datetime parsing. ([#229](https://github.com/sdispater/tomlkit/issues/229))
 - Clear the existing table header when it is adding to another table. ([#230](https://github.com/sdispater/tomlkit/issues/230))
+- Fix a bug that escape chars are lost after concat with another string. ([#235](https://github.com/sdispater/tomlkit/issues/235))
+- Fix a rendering issue of tables inside arrays or inline tables. ([#236](https://github.com/sdispater/tomlkit/issues/236))
 
 ## [0.11.4] - 2022-08-12
 
@@ -317,7 +322,8 @@
 - Fixed handling of super tables with different sections.
 - Fixed raw strings escaping.
 
-[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.4...master
+[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.5...master
+[0.11.5]: https://github.com/sdispater/tomlkit/releases/tag/0.11.5
 [0.11.4]: https://github.com/sdispater/tomlkit/releases/tag/0.11.4
 [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
diff --git a/pyproject.toml b/pyproject.toml
index d6a3d69..8c2da9d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "tomlkit"
-version = "0.11.4"
+version = "0.11.5"
 description = "Style preserving TOML library"
 authors = ["Sébastien Eustace <sebastien@eustace.io>"]
 license = "MIT"
diff --git a/tomlkit/__init__.py b/tomlkit/__init__.py
index ade3eea..fa7e0e3 100644
--- a/tomlkit/__init__.py
+++ b/tomlkit/__init__.py
@@ -25,7 +25,7 @@
 from tomlkit.api import ws
 
 
-__version__ = "0.11.4"
+__version__ = "0.11.5"
 __all__ = [
     "aot",
     "array",