Skip to content

Commit bada134

Browse files
committed
Prepare for v3.8.3.2-rc1
Signed-off-by: Jeff Long <[email protected]>
1 parent 7b94eaa commit bada134

File tree

2 files changed

+63
-2
lines changed

2 files changed

+63
-2
lines changed

CHANGELOG.md

+61
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,67 @@ starting with version 3.7.12.0.
77

88
Older Logs can be found in `docs/RELEASE-NOTES-*`.
99

10+
## [3.8.4.0] - 2021-09-12
11+
12+
API is compatible with C++ code written against previous v3.8 releases.
13+
14+
ABI (link time) compatibility is not guaranteed. Out-of-tree C++ code
15+
linked to previous v3.8 releases should be rebuilt against this version.
16+
17+
### Changed
18+
19+
#### GRC
20+
21+
- Fix drag and drop issue with Quartz
22+
- Fix desync when dragging block
23+
- Update disabled blocks if they depend on others
24+
- Allow short and byte as valid types in an enum
25+
- Fix evaluation of interdependent variables
26+
27+
#### modtool
28+
29+
- Set VERSION_PATH to 0 in new modules, instead of using GIT rev
30+
- For Python3, return correct exeption ModuleNotFoundError instead of ImportError
31+
32+
#### gr-blocks
33+
34+
- New Matrix Interleaver block
35+
36+
#### gr-channels
37+
38+
- Fix "hide" expressions in yml files
39+
40+
#### gr-digital
41+
42+
- Remove unused msg output port from Chunks To Symbols block yml
43+
44+
#### gr-fft
45+
46+
- Add "shift" parameter to Log Power FFT
47+
48+
#### gr-qtgui
49+
50+
- Fix: tags on the last sample were not shown
51+
52+
#### gr-video-sdl
53+
54+
- Fix: U and V channels were reversed on sink blocks
55+
56+
At LEAST the following authors contributed to this release.
57+
58+
- Adrien Michel <[email protected]>
59+
- David Winter <[email protected]>
60+
- Emmanuel Blot <[email protected]>
61+
- Håkon Vågsether <[email protected]>
62+
- Jared Dulmage <[email protected]>
63+
- Jason Uher <[email protected]>
64+
- Jeff Long <[email protected]>
65+
66+
- Marcus Müller <[email protected]>
67+
- Martin Braun <[email protected]>
68+
- Ron Economos <[email protected]>
69+
- Volker Schroer
70+
1071
## [3.8.3.1] - 2021-06-10
1172

1273
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.

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ GR_REGISTER_COMPONENT("testing-support" ENABLE_TESTING)
5252
# Set the version information here
5353
SET(VERSION_MAJOR 3)
5454
SET(VERSION_API 8)
55-
SET(VERSION_ABI 3)
56-
SET(VERSION_PATCH git)
55+
SET(VERSION_ABI 4)
56+
SET(VERSION_PATCH 0-rc1)
5757
include(GrVersion) #setup version info
5858

5959
# Minimum dependency versions for central dependencies:

0 commit comments

Comments
 (0)