diff --git a/CHANGELOG.md b/CHANGELOG.md
index 480f5a34..7092b033 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@
### 2.2.0 WIP { id="2.2.0" }
+### 2.1.1 May 16, 2024 { id="2.1.1" }
+
+- fix: unit tests compilation on gcc-14 fixed
+- fix: explicit `this` parameter support fixed
### 2.1.0 December 8, 2023 { id="2.1.0" }
diff --git a/README.md b/README.md
index 6a5c783c..41c9bed0 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
[](https://github.com/mpusz/mp-units/actions?query=workflow%3ADocumentation+branch%3Amaster)
[](https://conan.io/center/mp-units)
-[](https://mpusz.jfrog.io/ui/packages/conan:%2F%2Fmp-units/2.1.0)
+[](https://mpusz.jfrog.io/ui/packages/conan:%2F%2Fmp-units/2.2.0)
# `mp-units` - A Physical Quantities and Units library for C++
diff --git a/docs/getting_started/installation_and_usage.md b/docs/getting_started/installation_and_usage.md
index 93b4faac..21cd9012 100644
--- a/docs/getting_started/installation_and_usage.md
+++ b/docs/getting_started/installation_and_usage.md
@@ -341,7 +341,7 @@ with the following differences:
```ini title="conanfile.txt" hl_lines="2"
[requires]
- mp-units/2.1.0@mpusz/testing
+ mp-units/2.1.1@mpusz/testing
[layout]
cmake_layout
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4c7027a4..28afc04a 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -21,7 +21,7 @@
# SOFTWARE.
cmake_minimum_required(VERSION 3.19)
-project(mp-units VERSION 2.1.0 LANGUAGES CXX)
+project(mp-units VERSION 2.1.1 LANGUAGES CXX)
set(projectPrefix MP_UNITS_)