release v0.11.6 (#247)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c417750..95ecfc5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 ## [Unreleased]
 
+## [0.11.6] - 2022-10-27
+
+### Fixed
+
+- Allow broader type for toml file path value ([#243](https://github.com/sdispater/tomlkit/issues/243))
+- Auto-determine if a table is a super table if not specified explicitly. ([#245](https://github.com/sdispater/tomlkit/issues/245))
+
 ## [0.11.5] - 2022-09-28
 
 ### Fixed
@@ -322,7 +329,8 @@
 - Fixed handling of super tables with different sections.
 - Fixed raw strings escaping.
 
-[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.5...master
+[unreleased]: https://github.com/sdispater/tomlkit/compare/0.11.6...master
+[0.11.6]: https://github.com/sdispater/tomlkit/releases/tag/0.11.6
 [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
diff --git a/pyproject.toml b/pyproject.toml
index 7b21458..cdd83a8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "tomlkit"
-version = "0.11.5"
+version = "0.11.6"
 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 fa7e0e3..584bd96 100644
--- a/tomlkit/__init__.py
+++ b/tomlkit/__init__.py
@@ -25,7 +25,7 @@
 from tomlkit.api import ws
 
 
-__version__ = "0.11.5"
+__version__ = "0.11.6"
 __all__ = [
     "aot",
     "array",