diff --git a/CHANGELOG b/CHANGELOG index 087b0b612..b075e7134 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (6.9.0-1) unstable; urgency=medium + + * New SDRPlay v3 source plugin. PR #839 + * NFM modulator. Implemented DCS. Part of #792 + * DATV demod: option to enable/disable the video player + * DATV demod: stop player before initializing DATV framework + * Do not enable interprocedural optimization for Mac. Fixes #807 + + -- Edouard Griffiths, F4EXB Tue, 13 Apr 2021 08:17:46 +0200 + sdrangel (6.8.0-1) unstable; urgency=medium * New Packet Error Tester feature plugin. PR #836 diff --git a/CMakeLists.txt b/CMakeLists.txt index d2a59ed20..bc27aed72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") -set(sdrangel_VERSION_MINOR "8") +set(sdrangel_VERSION_MINOR "9") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index 048bfbc9e..ca4977014 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (6.9.0-1) unstable; urgency=medium + + * New SDRPlay v3 source plugin. PR #839 + * NFM modulator. Implemented DCS. Part of #792 + * DATV demod: option to enable/disable the video player + * DATV demod: stop player before initializing DATV framework + * Do not enable interprocedural optimization for Mac. Fixes #807 + + -- Edouard Griffiths, F4EXB Tue, 13 Apr 2021 08:17:46 +0200 + sdrangel (6.8.0-1) unstable; urgency=medium * New Packet Error Tester feature plugin. PR #836 diff --git a/plugins/channelrx/demoddatv/datvdemodplugin.cpp b/plugins/channelrx/demoddatv/datvdemodplugin.cpp index 34e07e36a..04428f693 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("6.8.0"), + QString("6.9.0"), QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QString("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channeltx/modnfm/nfmmodplugin.cpp b/plugins/channeltx/modnfm/nfmmodplugin.cpp index df961d521..3251c1cbd 100644 --- a/plugins/channeltx/modnfm/nfmmodplugin.cpp +++ b/plugins/channeltx/modnfm/nfmmodplugin.cpp @@ -28,7 +28,7 @@ const PluginDescriptor NFMModPlugin::m_pluginDescriptor = { NFMMod::m_channelId, QStringLiteral("NFM Modulator"), - QStringLiteral("6.4.0"), + QStringLiteral("6.9.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp index aab72c2f3..7e04e3f17 100644 --- a/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp +++ b/plugins/samplesource/sdrplayv3/sdrplayv3plugin.cpp @@ -32,7 +32,7 @@ const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = { QStringLiteral("SDRPlayV3"), QStringLiteral("SDRPlayV3 Input"), - QStringLiteral("6.7.1"), + QStringLiteral("6.9.0"), QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,