aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Long <willcode4@gmail.com>2021-09-12 09:55:01 -0400
committerJeff Long <willcode4@gmail.com>2021-09-13 06:58:52 -0400
commitbada1341a7e129392dab71da335cfe7f9a84037f (patch)
treeb9113b2ebe91aafbf770f936c6d15bc2440abc8b
parentdigital: replace likelyhood with likelihood (diff)
downloadgnuradio-bada1341a7e129392dab71da335cfe7f9a84037f.tar.xz
gnuradio-bada1341a7e129392dab71da335cfe7f9a84037f.zip
Prepare for v3.8.3.2-rc1v3.8.4.0-rc1
Signed-off-by: Jeff Long <willcode4@gmail.com>
-rw-r--r--CHANGELOG.md61
-rw-r--r--CMakeLists.txt4
2 files changed, 63 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9dc664cb..b65b72e26 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,67 @@ starting with version 3.7.12.0.
Older Logs can be found in `docs/RELEASE-NOTES-*`.
+## [3.8.4.0] - 2021-09-12
+
+API is compatible with C++ code written against previous v3.8 releases.
+
+ABI (link time) compatibility is not guaranteed. Out-of-tree C++ code
+linked to previous v3.8 releases should be rebuilt against this version.
+
+### Changed
+
+#### GRC
+
+- Fix drag and drop issue with Quartz
+- Fix desync when dragging block
+- Update disabled blocks if they depend on others
+- Allow short and byte as valid types in an enum
+- Fix evaluation of interdependent variables
+
+#### modtool
+
+- Set VERSION_PATH to 0 in new modules, instead of using GIT rev
+- For Python3, return correct exeption ModuleNotFoundError instead of ImportError
+
+#### gr-blocks
+
+- New Matrix Interleaver block
+
+#### gr-channels
+
+- Fix "hide" expressions in yml files
+
+#### gr-digital
+
+- Remove unused msg output port from Chunks To Symbols block yml
+
+#### gr-fft
+
+- Add "shift" parameter to Log Power FFT
+
+#### gr-qtgui
+
+- Fix: tags on the last sample were not shown
+
+#### gr-video-sdl
+
+- Fix: U and V channels were reversed on sink blocks
+
+At LEAST the following authors contributed to this release.
+
+- Adrien Michel <adriengit@users.noreply.github.com>
+- David Winter <david.winter@analog.com>
+- Emmanuel Blot <emmanuel.blot@free.fr>
+- Håkon Vågsether <hauk142@gmail.com>
+- Jared Dulmage <jared.dulmage@caliola.com>
+- Jason Uher <jason.uher@jhuapl.edu>
+- Jeff Long <willcode4@gmail.com>
+- Marc L <marcll@vt.edu>
+- Marcus Müller <mmueller@gnuradio.org>
+- Martin Braun <martin@gnuradio.org>
+- Ron Economos <w6rz@comcast.net>
+- Volker Schroer
+
## [3.8.3.1] - 2021-06-10
This is a PATCH level revision. The API is compatible with C++ code written for previous v3.8 releases. ABI (shared library signature) is intended to be compatible, so code linked against v3.8.3.0 should not require recompilation.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0d7d9fe68..8b45b95cd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -52,8 +52,8 @@ GR_REGISTER_COMPONENT("testing-support" ENABLE_TESTING)
# Set the version information here
SET(VERSION_MAJOR 3)
SET(VERSION_API 8)
-SET(VERSION_ABI 3)
-SET(VERSION_PATCH git)
+SET(VERSION_ABI 4)
+SET(VERSION_PATCH 0-rc1)
include(GrVersion) #setup version info
# Minimum dependency versions for central dependencies: