diff options
author | John Högberg <john@erlang.org> | 2020-02-18 09:46:59 +0100 |
---|---|---|
committer | John Högberg <john@erlang.org> | 2020-02-18 09:46:59 +0100 |
commit | b71df84002fbe1717042eb1dff355f9bef8a5c7b (patch) | |
tree | 2404d5f542e0438167cb6a28bee61957d483a718 /lib | |
parent | 6990ecb66c3e4136d88a68a12071e05b524b23c1 (diff) | |
parent | 60d3c955652cbd44e9d1e300b4834e16db565ce1 (diff) | |
download | erlang-b71df84002fbe1717042eb1dff355f9bef8a5c7b.tar.gz |
Merge branch 'maint-22' into maint
* maint-22:
Updated OTP version
Prepare release
# Conflicts:
# make/otp_version_tickets
Diffstat (limited to 'lib')
-rw-r--r-- | lib/compiler/doc/src/notes.xml | 36 | ||||
-rw-r--r-- | lib/compiler/vsn.mk | 2 |
2 files changed, 37 insertions, 1 deletions
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml index 62ea389edf..dc509bbf60 100644 --- a/lib/compiler/doc/src/notes.xml +++ b/lib/compiler/doc/src/notes.xml @@ -32,6 +32,42 @@ <p>This document describes the changes made to the Compiler application.</p> +<section><title>Compiler 7.5.2</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p>Fixed a bug that could cause the compiler to reject + valid code that used the <c>is_map_key/2</c> BIF.</p> + <p> + Own Id: OTP-16452 Aux Id: ERL-1161 </p> + </item> + <item> + <p>Fixed a bug that could cause the compiler to reject + valid code that matched the same map key several + times.</p> + <p> + Own Id: OTP-16456 Aux Id: ERL-1163 </p> + </item> + <item> + <p>The compiler could crash when compiling a convoluted + <c>receive</c> statement.</p> + <p> + Own Id: OTP-16466 Aux Id: ERL-1170 </p> + </item> + <item> + <p>The compiler could crash when a fun was created but + never used.</p> + <p>The compiler could crash when compiling the expression + <c>true = 0 / X</c>.</p> + <p> + Own Id: OTP-16467 Aux Id: ERL-1166, ERL-1167 </p> + </item> + </list> + </section> + +</section> + <section><title>Compiler 7.5.1</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk index 8da9ebb211..87cb90522c 100644 --- a/lib/compiler/vsn.mk +++ b/lib/compiler/vsn.mk @@ -1 +1 @@ -COMPILER_VSN = 7.5.1 +COMPILER_VSN = 7.5.2 |