diff --git a/CHANGELOG b/CHANGELOG
index ccf7ecc709..1695059aa6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,16 @@
+sdrangel (7.17.0-1) unstable; urgency=medium
+
+   * Add frequency scanner channel plugin. PR #1852
+   * Implementation of Mac OS CI. PR #1841
+   * Change down and up channelizers filter chain strategy. Fixes #1846
+   * Fix race condition that can result in a crash or hang. PR #1854
+   * DSC Demod: initialise m_scopeSink. PR #1854
+   * Fix FFT Overlap for spectrum view. PR #1856
+   * Various ADS-B enhancements. PR #1861
+   * Use channel sample rate of 48k in RTTY and PSK31 mods. Fixes #1862. PR #1865
+
+  -- Edouard Griffiths, F4EXB  <f4exb06@gmail.com>  Sun, 29 Oct 2023 04:21:18 +0100
+
 sdrangel (7.16.0-1) unstable; urgency=medium
 
    * Added RTTY modulator. PR #1800
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f300ba8ec5..97640bfb4e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 
 # configure version
 set(sdrangel_VERSION_MAJOR "7")
-set(sdrangel_VERSION_MINOR "16")
+set(sdrangel_VERSION_MINOR "17")
 set(sdrangel_VERSION_PATCH "0")
 set(sdrangel_VERSION_SUFFIX "")
 
diff --git a/debian/changelog b/debian/changelog
index 29a1859b81..6e2a9b0ef8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+sdrangel (7.17.0-1) unstable; urgency=medium
+
+   * Add frequency scanner channel plugin. PR #1852
+   * Implementation of Mac OS CI. PR #1841
+   * Change down and up channelizers filter chain strategy. Fixes #1846
+   * Fix race condition that can result in a crash or hang. PR #1854
+   * DSC Demod: initialise m_scopeSink. PR #1854
+   * Fix FFT Overlap for spectrum view. PR #1856
+   * Various ADS-B enhancements. PR #1861
+   * Use channel sample rate of 48k in RTTY and PSK31 mods. Fixes #1862. PR #1865
+
+  -- Edouard Griffiths, F4EXB  <f4exb06@gmail.com>  Sun, 29 Oct 2023 04:21:18 +0100
+
 sdrangel (7.16.0-1) unstable; urgency=medium
 
    * Added RTTY modulator. PR #1800
diff --git a/plugins/channelrx/demodadsb/adsbplugin.cpp b/plugins/channelrx/demodadsb/adsbplugin.cpp
index bad85348bc..2b245f0916 100644
--- a/plugins/channelrx/demodadsb/adsbplugin.cpp
+++ b/plugins/channelrx/demodadsb/adsbplugin.cpp
@@ -30,7 +30,7 @@
 const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
     ADSBDemod::m_channelId,
     QStringLiteral("ADS-B Demodulator"),
-    QStringLiteral("7.16.0"),
+    QStringLiteral("7.17.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/channelrx/demoddsc/dscdemodplugin.cpp b/plugins/channelrx/demoddsc/dscdemodplugin.cpp
index 48627aa542..29dd925679 100644
--- a/plugins/channelrx/demoddsc/dscdemodplugin.cpp
+++ b/plugins/channelrx/demoddsc/dscdemodplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor DSCDemodPlugin::m_pluginDescriptor = {
     DSCDemod::m_channelId,
     QStringLiteral("DSC Demodulator"),
-    QStringLiteral("7.14.0"),
+    QStringLiteral("7.17.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/channeltx/modpsk31/psk31modplugin.cpp b/plugins/channeltx/modpsk31/psk31modplugin.cpp
index e500b04d62..6afb202887 100644
--- a/plugins/channeltx/modpsk31/psk31modplugin.cpp
+++ b/plugins/channeltx/modpsk31/psk31modplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor PSK31Plugin::m_pluginDescriptor = {
     PSK31::m_channelId,
     QStringLiteral("PSK31 Modulator"),
-    QStringLiteral("7.16.0"),
+    QStringLiteral("7.17.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/channeltx/modrtty/rttymodplugin.cpp b/plugins/channeltx/modrtty/rttymodplugin.cpp
index 1f939dbca4..b00044f104 100644
--- a/plugins/channeltx/modrtty/rttymodplugin.cpp
+++ b/plugins/channeltx/modrtty/rttymodplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor RttyModPlugin::m_pluginDescriptor = {
     RttyMod::m_channelId,
     QStringLiteral("RTTY Modulator"),
-    QStringLiteral("7.16.0"),
+    QStringLiteral("7.17.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,