diff --git a/CHANGELOG.md b/CHANGELOG.md
index e933d4161..b5d68ccc2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,22 @@
This document provides a list of notable changes introduced in Devolutions Gateway service, installer and Jetsocat.
+## 2026.2.2 (2026-06-05)
+
+### Features
+
+- _agent_: add PSU Event Hub compatibility (experimental) ([#1803](https://github.com/Devolutions/devolutions-gateway/issues/1803)) ([273ee66fc9](https://github.com/Devolutions/devolutions-gateway/commit/273ee66fc90a39de9177006103be5c3634f599b8))
+
+ Adds PowerShell Universal Event Hub remote agent compatibility as an
+ optional Devolutions Agent feature. This lets Devolutions Agent connect
+ to PSU Event Hubs, receive command/script invocations, and return
+ PSU-compatible PowerShell results without installing a separate PSU
+ agent service.
+
+### Bug Fixes
+
+- _dgw,agent_: backwards-compatibility for update manifest V1 ([#1815](https://github.com/Devolutions/devolutions-gateway/issues/1815)) ([389ae7e2b9](https://github.com/Devolutions/devolutions-gateway/commit/389ae7e2b9e81a320ddbd42487870386a43a464d))
+
## 2026.2.1 (2026-06-03)
### Bug Fixes
diff --git a/Cargo.lock b/Cargo.lock
index 217465e44..53b85a56f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1535,7 +1535,7 @@ dependencies = [
[[package]]
name = "devolutions-agent"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"agent-tunnel-proto",
"anyhow",
@@ -1602,7 +1602,7 @@ dependencies = [
[[package]]
name = "devolutions-agent-updater"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"anyhow",
"win-api-wrappers",
@@ -1610,7 +1610,7 @@ dependencies = [
[[package]]
name = "devolutions-gateway"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"agent-tunnel",
"anyhow",
@@ -1744,7 +1744,7 @@ dependencies = [
[[package]]
name = "devolutions-pedm"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"aide",
"anyhow",
@@ -1832,7 +1832,7 @@ dependencies = [
[[package]]
name = "devolutions-pedm-shell-ext"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"devolutions-pedm-shared",
"embed-resource",
@@ -1845,7 +1845,7 @@ dependencies = [
[[package]]
name = "devolutions-session"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"anyhow",
"async-trait",
@@ -3597,7 +3597,7 @@ dependencies = [
[[package]]
name = "jetsocat"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"anyhow",
"base64 0.22.1",
diff --git a/Cargo.toml b/Cargo.toml
index 69d976d7b..18e11b3b1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@ default-members = [
]
[workspace.package]
-version = "2026.2.1"
+version = "2026.2.2"
[profile.profiling]
inherits = "release"
diff --git a/VERSION b/VERSION
index 1c36d5f1e..58e202cf7 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2026.2.1
+2026.2.2
diff --git a/crates/devolutions-pedm-shell-ext/AppxManifest.xml b/crates/devolutions-pedm-shell-ext/AppxManifest.xml
index a835f553d..a653d0131 100644
--- a/crates/devolutions-pedm-shell-ext/AppxManifest.xml
+++ b/crates/devolutions-pedm-shell-ext/AppxManifest.xml
@@ -11,7 +11,7 @@
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 uap10 com">
+ Version="2026.2.2.0" />
Devolutions Agent
Devolutions
diff --git a/dotnet/DesktopAgent/DesktopAgent.csproj b/dotnet/DesktopAgent/DesktopAgent.csproj
index 3fc7f0424..b693338f2 100644
--- a/dotnet/DesktopAgent/DesktopAgent.csproj
+++ b/dotnet/DesktopAgent/DesktopAgent.csproj
@@ -6,7 +6,7 @@
DevolutionsDesktopAgent
Devolutions Agent
latest
- 2026.2.1.0
+ 2026.2.2.0
Devolutions
Copyright © 2025
Devolutions Agent
diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock
index 8103eacc1..9ede5728f 100644
--- a/fuzz/Cargo.lock
+++ b/fuzz/Cargo.lock
@@ -689,7 +689,7 @@ dependencies = [
[[package]]
name = "devolutions-gateway"
-version = "2026.2.1"
+version = "2026.2.2"
dependencies = [
"anyhow",
"async-trait",
diff --git a/package/AgentLinux/CHANGELOG.md b/package/AgentLinux/CHANGELOG.md
index b41f9f1e1..6a72029a1 100644
--- a/package/AgentLinux/CHANGELOG.md
+++ b/package/AgentLinux/CHANGELOG.md
@@ -1,5 +1,9 @@
# Packaging changelog
+## 2026.2.2 (2026-06-05)
+
+- No changes.
+
## 2026.2.1 (2026-06-03)
- No changes.
diff --git a/package/Linux/CHANGELOG.md b/package/Linux/CHANGELOG.md
index 2d6b43dbb..17415817d 100644
--- a/package/Linux/CHANGELOG.md
+++ b/package/Linux/CHANGELOG.md
@@ -1,5 +1,9 @@
# Packaging changelog
+## 2026.2.2 (2026-06-05)
+
+- No changes.
+
## 2026.2.1 (2026-06-03)
- No changes.
diff --git a/powershell/DevolutionsGateway/DevolutionsGateway.psd1 b/powershell/DevolutionsGateway/DevolutionsGateway.psd1
index e2f963f0e..c4157fba8 100644
--- a/powershell/DevolutionsGateway/DevolutionsGateway.psd1
+++ b/powershell/DevolutionsGateway/DevolutionsGateway.psd1
@@ -7,7 +7,7 @@
RootModule = 'DevolutionsGateway.psm1'
# Version number of this module.
- ModuleVersion = '2026.2.1'
+ ModuleVersion = '2026.2.2'
# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'