Release 0.10.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb91c6c..db370cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,8 @@
 # Change Log
 
-[Unreleased]
+## [Unreleased]
+
+## [0.10.0] - 2022-02-18
 
 ### Fixed
 
@@ -256,7 +258,8 @@
 - Fixed handling of super tables with different sections.
 - Fixed raw strings escaping.
 
-[unreleased]: https://github.com/sdispater/tomlkit/compare/0.9.2...master
+[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.0...master
+[0.9.2]: https://github.com/sdispater/tomlkit/releases/tag/0.10.0
 [0.9.2]: https://github.com/sdispater/tomlkit/releases/tag/0.9.2
 [0.9.1]: https://github.com/sdispater/tomlkit/releases/tag/0.9.1
 [0.9.0]: https://github.com/sdispater/tomlkit/releases/tag/0.9.0
diff --git a/pyproject.toml b/pyproject.toml
index df6c9a5..594c3ef 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "tomlkit"
-version = "0.9.2"
+version = "0.10.0"
 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 84566d4..eb317fb 100644
--- a/tomlkit/__init__.py
+++ b/tomlkit/__init__.py
@@ -25,7 +25,7 @@
 from .api import ws
 
 
-__version__ = "0.9.2"
+__version__ = "0.10.0"
 __all__ = [
     "aot",
     "array",