diff options
author | Erlang/OTP <otp@erlang.org> | 2019-07-09 09:52:19 +0200 |
---|---|---|
committer | Erlang/OTP <otp@erlang.org> | 2019-07-09 09:52:19 +0200 |
commit | 20e26498ff75c4689a68e11e28016ae5fe44d791 (patch) | |
tree | 1d8a915f0c6e36be537a647d5a85edfb51707846 /lib/compiler | |
parent | 7c1711215aa1d9bf620340bf96777e3251a104e8 (diff) | |
download | erlang-20e26498ff75c4689a68e11e28016ae5fe44d791.tar.gz |
Prepare release
Diffstat (limited to 'lib/compiler')
-rw-r--r-- | lib/compiler/doc/src/notes.xml | 29 | ||||
-rw-r--r-- | lib/compiler/vsn.mk | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml index f0d869381b..209e40c0f5 100644 --- a/lib/compiler/doc/src/notes.xml +++ b/lib/compiler/doc/src/notes.xml @@ -32,6 +32,35 @@ <p>This document describes the changes made to the Compiler application.</p> +<section><title>Compiler 7.4.3</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p>Fixed an unsafe optimization when matching + <c>tuple_size/1</c> outside of guards, which could crash + the emulator if the argument was not a tuple.</p> + <p> + Own Id: OTP-15945</p> + </item> + <item> + <p>Fixed a rare bug that could cause the wrong kind of + exception to be thrown when a BIF failed in a function + that matched bitstrings.</p> + <p> + Own Id: OTP-15946</p> + </item> + <item> + <p>Fixed a bug where receive statements inside try/catch + blocks could return incorrect results.</p> + <p> + Own Id: OTP-15952</p> + </item> + </list> + </section> + +</section> + <section><title>Compiler 7.4.2</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk index 508bbc902c..c76777b191 100644 --- a/lib/compiler/vsn.mk +++ b/lib/compiler/vsn.mk @@ -1 +1 @@ -COMPILER_VSN = 7.4.2 +COMPILER_VSN = 7.4.3 |