Bump version to 0.10.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6de02aa..f566d56 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 ## [Unreleased]
 
+## [0.10.1] - 2022-03-27
+
 ### Fixed
 
 - Preserve the newlines before super tables when rendering. ([#178](https://github.com/sdispater/tomlkit/issues/178))
@@ -263,7 +265,8 @@
 - Fixed handling of super tables with different sections.
 - Fixed raw strings escaping.
 
-[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.0...master
+[unreleased]: https://github.com/sdispater/tomlkit/compare/0.10.1...master
+[0.10.1]: https://github.com/sdispater/tomlkit/releases/tag/0.10.1
 [0.10.0]: 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
diff --git a/pyproject.toml b/pyproject.toml
index 594c3ef..7552054 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "tomlkit"
-version = "0.10.0"
+version = "0.10.1"
 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 eb317fb..7bab29f 100644
--- a/tomlkit/__init__.py
+++ b/tomlkit/__init__.py
@@ -25,7 +25,7 @@
 from .api import ws
 
 
-__version__ = "0.10.0"
+__version__ = "0.10.1"
 __all__ = [
     "aot",
     "array",