diff --git a/CHANGELOG b/CHANGELOG
index 94f728448..22f61a20c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,16 @@
+sdrangel (7.0.1-1) unstable; urgency=medium
+
+  * Added ability to build a package for MacOS. PR #1249
+  * Warn if OpenGL is < 2.1, rather than 3.0, as it runs fine with 2.1. PR #1249
+  * Added 3 term Blackman and 7 term Blackman-Harris FFT windows
+  * SSB Demod: added control of FFT filter window. Part of #1224
+  * SSB Demod: implement switchable filter bank. Part of #1224
+  * Main Window: create empty workspace if none in default configuration. Part of #1250
+  * Save/restore auto-stack function in workspaces. Part of #1250
+  * Fixed ButtonSwitch background color with stylesheets
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Thu, 19 May 2022 26:02:31 +0200
+
 sdrangel (7.0.0-1) unstable; urgency=medium
 
   * New top level UI released
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 852078442..f1bb54042 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 # configure version
 set(sdrangel_VERSION_MAJOR "7")
 set(sdrangel_VERSION_MINOR "0")
-set(sdrangel_VERSION_PATCH "0")
+set(sdrangel_VERSION_PATCH "1")
 set(sdrangel_VERSION_SUFFIX "")
 
 # SDRAngel cmake options
diff --git a/debian/changelog b/debian/changelog
index 9e8e90f67..a1ba031f5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+sdrangel (7.0.1-1) unstable; urgency=medium
+
+  * Added ability to build a package for MacOS. PR #1249
+  * Warn if OpenGL is < 2.1, rather than 3.0, as it runs fine with 2.1. PR #1249
+  * Added 3 term Blackman and 7 term Blackman-Harris FFT windows
+  * SSB Demod: added control of FFT filter window. Part of #1224
+  * SSB Demod: implement switchable filter bank. Part of #1224
+  * Main Window: create empty workspace if none in default configuration. Part of #1250
+  * Save/restore auto-stack function in workspaces. Part of #1250
+  * Fixed ButtonSwitch background color with stylesheets
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Thu, 19 May 2022 26:02:31 +0200
+
 sdrangel (7.0.0-1) unstable; urgency=medium
 
   * New top level UI released
diff --git a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp
index 477d892ed..5909f5168 100644
--- a/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp
+++ b/plugins/channelrx/demodchirpchat/chirpchatplugin.cpp
@@ -27,7 +27,7 @@
 const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
     ChirpChatDemod::m_channelId,
 	QStringLiteral("ChirpChat Demodulator"),
-    QStringLiteral("7.0.0"),
+    QStringLiteral("7.0.1"),
 	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 	QStringLiteral("https://github.com/f4exb/sdrangel"),
 	true,
diff --git a/plugins/channelrx/demodssb/ssbplugin.cpp b/plugins/channelrx/demodssb/ssbplugin.cpp
index c3a3aeb20..9d3143bbf 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("7.0.0"),
+    QStringLiteral("7.0.1"),
 	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 	QStringLiteral("https://github.com/f4exb/sdrangel"),
 	true,