diff --git a/CHANGELOG b/CHANGELOG index 0746d2ee3..d188201cc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (6.5.1-1) unstable; urgency=medium + + * StarTracker feature: many enhancements. PR #757 + * Packet demod: Fixed issue #750. PR #756 + * Map feature: many enhancements. PR #755 + * FileSink: fixes and enhancements. PR #751 + * PTT feature: fixed copy paste typos. PR #748 + + -- Edouard Griffiths, F4EXB Sat, 23 Jan 2021 10:37:33 +0100 + sdrangel (6.5.0-1) unstable; urgency=medium * New PacketDemod Rx channel plugin. PR #746 diff --git a/CMakeLists.txt b/CMakeLists.txt index 96bbc5f55..d14411d7b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MINOR "5") -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 a9d228959..36ab67500 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (6.5.1-1) unstable; urgency=medium + + * StarTracker feature: many enhancements. PR #757 + * Packet demod: Fixed issue #750. PR #756 + * Map feature: many enhancements. PR #755 + * FileSink: fixes and enhancements. PR #751 + * PTT feature: fixed copy paste typos. PR #748 + + -- Edouard Griffiths, F4EXB Sat, 23 Jan 2021 10:37:33 +0100 + sdrangel (6.5.0-1) unstable; urgency=medium * New PacketDemod Rx channel plugin. PR #746 diff --git a/plugins/channelrx/demodpacket/packetdemodplugin.cpp b/plugins/channelrx/demodpacket/packetdemodplugin.cpp index 5a9d7e84e..ecd2bce95 100644 --- a/plugins/channelrx/demodpacket/packetdemodplugin.cpp +++ b/plugins/channelrx/demodpacket/packetdemodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PacketDemodPlugin::m_pluginDescriptor = { PacketDemod::m_channelId, QStringLiteral("Packet Demodulator"), - QStringLiteral("6.5.0"), + QStringLiteral("6.5.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/map/mapplugin.cpp b/plugins/feature/map/mapplugin.cpp index 3ec3b10e0..675f2f019 100644 --- a/plugins/feature/map/mapplugin.cpp +++ b/plugins/feature/map/mapplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor MapPlugin::m_pluginDescriptor = { Map::m_featureId, QStringLiteral("Map"), - QStringLiteral("6.5.0"), + QStringLiteral("6.5.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/simpleptt/simplepttplugin.cpp b/plugins/feature/simpleptt/simplepttplugin.cpp index d12d69601..69f22ee48 100644 --- a/plugins/feature/simpleptt/simplepttplugin.cpp +++ b/plugins/feature/simpleptt/simplepttplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = { SimplePTT::m_featureId, QStringLiteral("Simple PTT"), - QStringLiteral("4.19.0"), + QStringLiteral("6.5.1"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/startracker/startrackerplugin.cpp b/plugins/feature/startracker/startrackerplugin.cpp index 494a5cb81..8b7df695a 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.5.0"), + QStringLiteral("6.5.1"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,