diff --git a/CHANGELOG b/CHANGELOG
index 20bc4e7e4..298225534 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,16 @@
+sdrangel (6.16.5-1) unstable; urgency=medium
+
+  * API: added PUT, PATCH, POST /sdrangel/featureset/{featureSetIndex}/preset. Issue #998.
+  * API: added GET /sdrangel/featurepresets and DELETE /sdrangel/featurepreset. Issue #998.
+  * API: added feature sets in the instance summary
+  * API: added /sdrangel/features (GET) to get the list of available feature plugins
+  * SDRplay V3: fixes for API
+  * Satellite Tracker: fixed compilation in server mode. Fixes #996
+  * Satellite Tracker: various enhancements. PR #997.
+  * APT demod: API: fixed APT demod settings mappings. Fixes #995
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sun, 05 Sep 2021 20:27:06 +0200
+
 sdrangel (6.16.4-1) unstable; urgency=medium
 
   * API: fixed GET /sdrangel/featuresets
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 849e68504..16fda6247 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 # configure version
 set(sdrangel_VERSION_MAJOR "6")
 set(sdrangel_VERSION_MINOR "16")
-set(sdrangel_VERSION_PATCH "4")
+set(sdrangel_VERSION_PATCH "5")
 set(sdrangel_VERSION_SUFFIX "")
 
 # SDRAngel cmake options
diff --git a/debian/changelog b/debian/changelog
index c1d7da918..b4a9f147f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+sdrangel (6.16.5-1) unstable; urgency=medium
+
+  * API: added PUT, PATCH, POST /sdrangel/featureset/{featureSetIndex}/preset. Issue #998.
+  * API: added GET /sdrangel/featurepresets and DELETE /sdrangel/featurepreset. Issue #998.
+  * API: added feature sets in the instance summary
+  * API: added /sdrangel/features (GET) to get the list of available feature plugins
+  * SDRplay V3: fixes for API
+  * Satellite Tracker: fixed compilation in server mode. Fixes #996
+  * Satellite Tracker: various enhancements. PR #997.
+  * APT demod: API: fixed APT demod settings mappings. Fixes #995
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sun, 05 Sep 2021 20:27:06 +0200
+
 sdrangel (6.16.4-1) unstable; urgency=medium
 
   * API: fixed GET /sdrangel/featuresets
diff --git a/plugins/channelrx/demodapt/aptdemodplugin.cpp b/plugins/channelrx/demodapt/aptdemodplugin.cpp
index 64f059581..e8d5c8544 100644
--- a/plugins/channelrx/demodapt/aptdemodplugin.cpp
+++ b/plugins/channelrx/demodapt/aptdemodplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
     APTDemod::m_channelId,
     QStringLiteral("APT Demodulator"),
-    QStringLiteral("6.15.0"),
+    QStringLiteral("6.16.5"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp
index 553071c25..161296a0b 100644
--- a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp
+++ b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp
@@ -30,7 +30,7 @@
 const PluginDescriptor SatelliteTrackerPlugin::m_pluginDescriptor = {
     SatelliteTracker::m_featureId,
     QStringLiteral("Satellite Tracker"),
-    QStringLiteral("6.16.2"),
+    QStringLiteral("6.16.5"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp
index b41cb9cd1..2d3ea2a3a 100644
--- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp
+++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp
@@ -32,7 +32,7 @@
 const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = {
     QStringLiteral("SDRPlayV3"),
     QStringLiteral("SDRPlayV3 Input"),
-    QStringLiteral("6.16.0"),
+    QStringLiteral("6.16.5"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,