diff --git a/CHANGELOG b/CHANGELOG
index 6afade98c..1ad0920ee 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,20 @@
+sdrangel (6.16.0-1) unstable; urgency=medium
+
+  * New Pager demodulator. PR #960
+  * AIS feature: use course if heading is not available
+  * Satellite Tracker: fix table to accomodate Doppler tracking. PR #951. Issue #840
+  * SDRPlayV3: wait for some commands completion. PR #954
+  * Spectrum Markers: make them stick to frequency, power and time distance
+  * Fix handling of Satellite Tracker device settings. PR #959. Issue #953.
+  * Channel Analyzer / Scope: fixed sample rate handling. Fixes #956
+  * ScopeVis: added missing mutex locks in message handling. May fix #955
+  * ScopeVis: do not save / restore time offset in the settings
+  * ScopeVis: fixed multiple stream input. Fixes #872
+  * RadioClock and Pager: some optimizations
+  * SSB demod: fixed bandwidth setting. Fixes #957
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Tue, 13 Jul 2021 20:20:58 +0200
+
 sdrangel (6.15.1-1) unstable; urgency=medium
 
   * Demod Analyzer: fixed sample rate handling. Fixes #931
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 25b38934a..ca7a15578 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 
 # configure version
 set(sdrangel_VERSION_MAJOR "6")
-set(sdrangel_VERSION_MINOR "15")
-set(sdrangel_VERSION_PATCH "1")
+set(sdrangel_VERSION_MINOR "16")
+set(sdrangel_VERSION_PATCH "0")
 set(sdrangel_VERSION_SUFFIX "")
 
 # SDRAngel cmake options
diff --git a/debian/changelog b/debian/changelog
index 251786454..2e97b9096 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
+sdrangel (6.16.0-1) unstable; urgency=medium
+
+  * New Pager demodulator. PR #960
+  * AIS feature: use course if heading is not available
+  * Satellite Tracker: fix table to accomodate Doppler tracking. PR #951. Issue #840
+  * SDRPlayV3: wait for some commands completion. PR #954
+  * Spectrum Markers: make them stick to frequency, power and time distance
+  * Fix handling of Satellite Tracker device settings. PR #959. Issue #953.
+  * Channel Analyzer / Scope: fixed sample rate handling. Fixes #956
+  * ScopeVis: added missing mutex locks in message handling. May fix #955
+  * ScopeVis: do not save / restore time offset in the settings
+  * ScopeVis: fixed multiple stream input. Fixes #872
+  * RadioClock and Pager: some optimizations
+  * SSB demod: fixed bandwidth setting. Fixes #957
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Tue, 13 Jul 2021 20:20:58 +0200
+
 sdrangel (6.15.1-1) unstable; urgency=medium
 
   * Demod Analyzer: fixed sample rate handling. Fixes #931
diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp
index 90cc67d25..44c332ba0 100644
--- a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp
+++ b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp
@@ -26,7 +26,7 @@
 const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
     ChannelAnalyzer::m_channelId,
 	QStringLiteral("Channel Analyzer"),
-	QStringLiteral("6.15.0"),
+	QStringLiteral("6.16.0"),
 	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 	QStringLiteral("https://github.com/f4exb/sdrangel"),
 	true,
diff --git a/plugins/channelrx/demodais/aisdemodplugin.cpp b/plugins/channelrx/demodais/aisdemodplugin.cpp
index b906a7c96..8e102bb20 100644
--- a/plugins/channelrx/demodais/aisdemodplugin.cpp
+++ b/plugins/channelrx/demodais/aisdemodplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor AISDemodPlugin::m_pluginDescriptor = {
     AISDemod::m_channelId,
     QStringLiteral("AIS Demodulator"),
-    QStringLiteral("6.12.1"),
+    QStringLiteral("6.16.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/channelrx/demodssb/ssbplugin.cpp b/plugins/channelrx/demodssb/ssbplugin.cpp
index 3ec4bb37b..f8118bd33 100644
--- a/plugins/channelrx/demodssb/ssbplugin.cpp
+++ b/plugins/channelrx/demodssb/ssbplugin.cpp
@@ -12,7 +12,7 @@
 const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
     SSBDemod::m_channelId,
 	QStringLiteral("SSB Demodulator"),
-	QStringLiteral("6.7.0"),
+	QStringLiteral("6.16.0"),
 	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 	QStringLiteral("https://github.com/f4exb/sdrangel"),
 	true,
diff --git a/plugins/channelrx/radioclock/radioclockplugin.cpp b/plugins/channelrx/radioclock/radioclockplugin.cpp
index 208139c51..012002cfc 100644
--- a/plugins/channelrx/radioclock/radioclockplugin.cpp
+++ b/plugins/channelrx/radioclock/radioclockplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
     RadioClock::m_channelId,
     QStringLiteral("Radio Clock"),
-    QStringLiteral("6.15.0"),
+    QStringLiteral("6.16.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp
index 5fe498361..4668320fb 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.15.1"),
+    QStringLiteral("6.16.0"),
     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 7e04e3f17..b41cb9cd1 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.9.0"),
+    QStringLiteral("6.16.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,