diff --git a/CHANGELOG b/CHANGELOG index 6957ff90d..176ddbc3d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (7.15.0-1) unstable; urgency=medium + + * New Audio CAT SISO plugin. Implements #1597 + * Map: Change Street Map from WikiMedia to OpenStreetMap. PR #1711. Issue #1709 + * Packet Modulator: fixed segfault in GUI + * SigMFFileInput: fixed acceleration. Part of issue #1699 + * SimplePTT: fixed typo in code. Fixes #1705 + + -- Edouard Griffiths, F4EXB Sun, 18 Jun 2023 22:38:65 +0200 + sdrangel (7.14.2-1) unstable; urgency=medium * Implement GPIO and script control from Simple PTT feature. Implements #1558 diff --git a/CMakeLists.txt b/CMakeLists.txt index bf1f9c73f..df0c195c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "7") -set(sdrangel_VERSION_MINOR "14") -set(sdrangel_VERSION_PATCH "2") +set(sdrangel_VERSION_MINOR "15") +set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") # SDRAngel cmake options diff --git a/debian/changelog b/debian/changelog index 10d16d205..03bc05c53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (7.15.0-1) unstable; urgency=medium + + * New Audio CAT SISO plugin. Implements #1597 + * Map: Change Street Map from WikiMedia to OpenStreetMap. PR #1711. Issue #1709 + * Packet Modulator: fixed segfault in GUI + * SigMFFileInput: fixed acceleration. Part of issue #1699 + * SimplePTT: fixed typo in code. Fixes #1705 + + -- Edouard Griffiths, F4EXB Sun, 18 Jun 2023 22:38:65 +0200 + sdrangel (7.14.2-1) unstable; urgency=medium * Implement GPIO and script control from Simple PTT feature. Implements #1558 diff --git a/plugins/channeltx/modpacket/packetmodplugin.cpp b/plugins/channeltx/modpacket/packetmodplugin.cpp index 88621050d..2cf3ebfd5 100644 --- a/plugins/channeltx/modpacket/packetmodplugin.cpp +++ b/plugins/channeltx/modpacket/packetmodplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor PacketModPlugin::m_pluginDescriptor = { PacketMod::m_channelId, QStringLiteral("Packet Modulator"), - QStringLiteral("7.0.0"), + QStringLiteral("7.15.0"), 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 e014e21c4..cc1999f51 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("7.14.2"), + QStringLiteral("7.15.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp index 7f3b94e58..fb8e8a581 100644 --- a/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp +++ b/plugins/samplesource/sigmffileinput/sigmffileinputplugin.cpp @@ -31,7 +31,7 @@ const PluginDescriptor SigMFFileInputPlugin::m_pluginDescriptor = { QStringLiteral("SigMFFileInput"), QStringLiteral("File device input (SigMF)"), - QStringLiteral("7.14.2"), + QStringLiteral("7.15.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,