diff --git a/CHANGELOG b/CHANGELOG
index 8a5dad247..e4f06134b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+sdrangel (6.13.0-1) unstable; urgency=medium
+
+  * New antenna tool feature PR #906
+  * Sat tracker: fix rotator max azimuth and elevation settings in GUI. PR #900
+  * GS232: support SPID MD-02 controller. PR #901
+  * File Output: make file name persistent
+  * PlutoSDR MIMO: fixed wrong reference to BladeRF library in CMakeLists.txt. Fixes #905
+  * Add .wav file support to File Input File Source and File Record plugins. PR #907
+  * Star Tracker: Add Custom Az/El target and drift scan plot. PR #910
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Fri, 28 May 2021 10:25:48 +0200
+
 sdrangel (6.12.1-1) unstable; urgency=medium
 
   * AIS: Fix decoding of AIS class B messages PR #895
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0eda438ed..e0b54be38 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 "12")
-set(sdrangel_VERSION_PATCH "1")
+set(sdrangel_VERSION_MINOR "13")
+set(sdrangel_VERSION_PATCH "0")
 set(sdrangel_VERSION_SUFFIX "")
 
 # SDRAngel cmake options
diff --git a/debian/changelog b/debian/changelog
index 87493dbd6..b48af9251 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+sdrangel (6.13.0-1) unstable; urgency=medium
+
+  * New antenna tool feature PR #906
+  * Sat tracker: fix rotator max azimuth and elevation settings in GUI. PR #900
+  * GS232: support SPID MD-02 controller. PR #901
+  * File Output: make file name persistent
+  * PlutoSDR MIMO: fixed wrong reference to BladeRF library in CMakeLists.txt. Fixes #905
+  * Add .wav file support to File Input File Source and File Record plugins. PR #907
+  * Star Tracker: Add Custom Az/El target and drift scan plot. PR #910
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Fri, 28 May 2021 10:25:48 +0200
+
 sdrangel (6.12.1-1) unstable; urgency=medium
 
   * AIS: Fix decoding of AIS class B messages PR #895
diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp
index 72685e4b1..3bd347824 100644
--- a/plugins/feature/gs232controller/gs232controllerplugin.cpp
+++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp
@@ -30,7 +30,7 @@
 const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = {
     GS232Controller::m_featureId,
     QStringLiteral("GS-232 Rotator Controller"),
-    QStringLiteral("6.6.1"),
+    QStringLiteral("6.13.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 e4bee59ce..558441975 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.10.3s"),
+    QStringLiteral("6.13.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/feature/startracker/startrackerplugin.cpp b/plugins/feature/startracker/startrackerplugin.cpp
index 5d5029454..b82b51711 100644
--- a/plugins/feature/startracker/startrackerplugin.cpp
+++ b/plugins/feature/startracker/startrackerplugin.cpp
@@ -30,7 +30,7 @@
 const PluginDescriptor StarTrackerPlugin::m_pluginDescriptor = {
     StarTracker::m_featureId,
     QStringLiteral("Star Tracker"),
-    QStringLiteral("6.10.3"),
+    QStringLiteral("6.13.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,