Release 2.11.4
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2878f5c..0b91c3e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,14 @@
 
 - n/a
 
+## [2.11.4] - 2023-02-01
+
+### Fixed
+
+- Fixed compatibility with python 3.12 (asyncio)
+- Removed an unnecessary reference cycle, reducing memory usage in some cases
+  ([#344](https://github.com/rohanpm/more-executors/issues/344))
+
 ## [2.11.3] - 2022-12-14
 
 ### Fixed
@@ -329,7 +337,8 @@
 - Minor improvements to logging
 
 
-[Unreleased]: https://github.com/rohanpm/more-executors/compare/v2.11.3...HEAD
+[Unreleased]: https://github.com/rohanpm/more-executors/compare/v2.11.4...HEAD
+[2.11.4]: https://github.com/rohanpm/more-executors/compare/v2.11.3...v2.11.4
 [2.11.3]: https://github.com/rohanpm/more-executors/compare/v2.11.2...v2.11.3
 [2.11.2]: https://github.com/rohanpm/more-executors/compare/v2.11.1...v2.11.2
 [2.11.1]: https://github.com/rohanpm/more-executors/compare/v2.11.0...v2.11.1
diff --git a/setup.py b/setup.py
index e448b5d..f7f6e58 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 
 setup(
     name="more-executors",
-    version="2.11.3",
+    version="2.11.4",
     author="Rohan McGovern",
     author_email="rohan@mcgovern.id.au",
     packages=find_packages(exclude=["tests", "tests.*"]),