diff --git a/CHANGELOG b/CHANGELOG
index d8a4c109f..05db5fd82 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,14 @@
+sdrangel (4.17.0-1) unstable; urgency=medium
+
+   * Packet modulator: new channel Tx plugin
+   * DATV demod: Spectrum point and click is used fix. Fixes issue #637
+   * DATV demod: added standard basic settings dialog
+   * SoapySDR Input: reversed soft LO ppm correction. Fixes #641
+   * Corrected Highpass and Bandpass filters normalization. Implements #642
+   * Channel add action: fixed tab view being in use. Fixes #645
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sat, 26 Sep 2020 07:12:43 +0200
+
 sdrangel (4.16.1-1) unstable; urgency=medium
 
    * BladeRF2: fixed global gain setting. Fixes issue #630
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a17601e23..6f5bd7197 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,8 +17,8 @@ set(CMAKE_CXX_EXTENSIONS OFF)
 
 # configure version
 set(sdrangel_VERSION_MAJOR "4")
-set(sdrangel_VERSION_MINOR "16")
-set(sdrangel_VERSION_PATCH "1")
+set(sdrangel_VERSION_MINOR "17")
+set(sdrangel_VERSION_PATCH "0")
 set(sdrangel_VERSION_SUFFIX "")
 
 # SDRAngel cmake options
diff --git a/debian/changelog b/debian/changelog
index d80bee2e7..f889ed358 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+sdrangel (4.17.0-1) unstable; urgency=medium
+
+   * Packet modulator: new channel Tx plugin
+   * DATV demod: Spectrum point and click is used fix. Fixes issue #637
+   * DATV demod: added standard basic settings dialog
+   * SoapySDR Input: reversed soft LO ppm correction. Fixes #641
+   * Corrected Highpass and Bandpass filters normalization. Implements #642
+   * Channel add action: fixed tab view being in use. Fixes #645
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sat, 26 Sep 2020 07:12:43 +0200
+
 sdrangel (4.16.1-1) unstable; urgency=medium
 
    * BladeRF2: fixed global gain setting. Fixes issue #630
diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp
index b0e2feaa9..ec2d10d9e 100644
--- a/plugins/channelrx/demoddatv/datvdemodplugin.cpp
+++ b/plugins/channelrx/demoddatv/datvdemodplugin.cpp
@@ -30,7 +30,7 @@ const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
 {
     DATVDemod::m_channelId,
     QString("DATV Demodulator"),
-    QString("4.16.2"),
+    QString("4.17.0"),
     QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
 	QString("https://github.com/f4exb/sdrangel"),
 	true,
diff --git a/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp b/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp
index b3991d8fd..f26920b87 100644
--- a/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp
+++ b/plugins/samplesource/soapysdrinput/soapysdrinputplugin.cpp
@@ -32,7 +32,7 @@
 const PluginDescriptor SoapySDRInputPlugin::m_pluginDescriptor = {
     QString("SoapySDR"),
     QString("SoapySDR Input"),
-    QString("4.15.0"),
+    QString("4.17.0"),
     QString("(c) Edouard Griffiths, F4EXB"),
     QString("https://github.com/f4exb/sdrangel"),
     true,