From 19b809affbdb3a7f0a6260d892e59ddcaaaa3e58 Mon Sep 17 00:00:00 2001
From: f4exb <f4exb06@gmail.com>
Date: Sun, 28 Feb 2021 20:36:17 +0100
Subject: [PATCH] Updated versions and changelogs

---
 CHANGELOG                                            | 12 ++++++++++++
 CMakeLists.txt                                       |  4 ++--
 debian/changelog                                     | 12 ++++++++++++
 plugins/channelrx/demodapt/aptdemodplugin.cpp        |  2 +-
 plugins/channelrx/demoddatv/datvdemodplugin.cpp      |  2 +-
 plugins/channelrx/filesink/filesinkplugin.cpp        |  2 +-
 .../channelrx/sigmffilesink/sigmffilesinkplugin.cpp  |  2 +-
 .../satellitetracker/satellitetrackerplugin.cpp      |  2 +-
 plugins/samplesource/rtlsdr/rtlsdrplugin.cpp         |  2 +-
 9 files changed, 32 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 51f0eed93..bfd09627f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+sdrangel (6.6.0-1) unstable; urgency=medium
+
+  * New APT demodulator for NOAA satellites. PR #787
+  * New Satellite tracker feature plugin. PR #787
+  * DATV: display MER and CNR. Issue #784
+  * DATV: new control for LDPC bit flips maximum corrections
+  * RTL-SDR: increase LO ppm range to +/-200
+  * FileSink: enable record button only when plugin is running. Issue #782
+  * SigMFFileSink: enable record button only when plugin is running
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sun, 28 Feb 2021 18:43:09 +0100
+
 sdrangel (6.5.5-1) unstable; urgency=medium
 
   * Spectrum frequency zooming: Implements #773
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 66d1263a7..b5947616c 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 "5")
-set(sdrangel_VERSION_PATCH "5")
+set(sdrangel_VERSION_MINOR "6")
+set(sdrangel_VERSION_PATCH "0")
 set(sdrangel_VERSION_SUFFIX "")
 
 # SDRAngel cmake options
diff --git a/debian/changelog b/debian/changelog
index 602526b1a..2a9566eea 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+sdrangel (6.6.0-1) unstable; urgency=medium
+
+  * New APT demodulator for NOAA satellites. PR #787
+  * New Satellite tracker feature plugin. PR #787
+  * DATV: display MER and CNR. Issue #784
+  * DATV: new control for LDPC bit flips maximum corrections
+  * RTL-SDR: increase LO ppm range to +/-200
+  * FileSink: enable record button only when plugin is running. Issue #782
+  * SigMFFileSink: enable record button only when plugin is running
+
+  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sun, 28 Feb 2021 18:43:09 +0100
+
 sdrangel (6.5.5-1) unstable; urgency=medium
 
   * Spectrum frequency zooming: Implements #773
diff --git a/plugins/channelrx/demodapt/aptdemodplugin.cpp b/plugins/channelrx/demodapt/aptdemodplugin.cpp
index cde064db4..fb8a2a163 100644
--- a/plugins/channelrx/demodapt/aptdemodplugin.cpp
+++ b/plugins/channelrx/demodapt/aptdemodplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
     APTDemod::m_channelId,
     QStringLiteral("APT Demodulator"),
-    QStringLiteral("6.5.5"),
+    QStringLiteral("6.6.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp
index 119888269..8b09ddddf 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.19.0"),
+    QString("6.6.0"),
     QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
 	QString("https://github.com/f4exb/sdrangel"),
 	true,
diff --git a/plugins/channelrx/filesink/filesinkplugin.cpp b/plugins/channelrx/filesink/filesinkplugin.cpp
index b1e09d13f..8c57309ba 100644
--- a/plugins/channelrx/filesink/filesinkplugin.cpp
+++ b/plugins/channelrx/filesink/filesinkplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor FileSinkPlugin::m_pluginDescriptor = {
     FileSink::m_channelId,
     QStringLiteral("File Sink"),
-    QStringLiteral("6.5.5"),
+    QStringLiteral("6.6.0"),
     QStringLiteral("(c) Edouard Griffiths, F4EXB"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp
index 1fa3ecb9a..d1ec7746f 100644
--- a/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp
+++ b/plugins/channelrx/sigmffilesink/sigmffilesinkplugin.cpp
@@ -29,7 +29,7 @@
 const PluginDescriptor SigMFFileSinkPlugin::m_pluginDescriptor = {
     SigMFFileSink::m_channelId,
     QStringLiteral("SigMF File Sink"),
-    QStringLiteral("6.5.5"),
+    QStringLiteral("6.6.0"),
     QStringLiteral("(c) Edouard Griffiths, F4EXB"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/feature/satellitetracker/satellitetrackerplugin.cpp b/plugins/feature/satellitetracker/satellitetrackerplugin.cpp
index 225203662..131f7663f 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.5.6"),
+    QStringLiteral("6.6.0"),
     QStringLiteral("(c) Jon Beniston, M7RCE and Daniel Warner (SGP4 library)"),
     QStringLiteral("https://github.com/f4exb/sdrangel"),
     true,
diff --git a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp
index 0e66b34a5..9665f319d 100644
--- a/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp
+++ b/plugins/samplesource/rtlsdr/rtlsdrplugin.cpp
@@ -15,7 +15,7 @@
 const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
     QStringLiteral("RTLSDR"),
 	QStringLiteral("RTL-SDR Input"),
-	QStringLiteral("6.5.3"),
+	QStringLiteral("6.6.0"),
 	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 	QStringLiteral("https://github.com/f4exb/sdrangel"),
 	true,