diff options
author | Erlang/OTP <[email protected]> | 2019-01-08 14:39:45 +0100 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2019-01-08 14:39:45 +0100 |
commit | 3dc3bb2126919b9dbee0ded9e0c843fc9d29237d (patch) | |
tree | cf9c1d435640737b92d80e07ef8a659d1e86cf2b | |
parent | 680d8315dc6d1a20092dafe40498f718103f863a (diff) | |
download | otp-3dc3bb2126919b9dbee0ded9e0c843fc9d29237d.tar.gz otp-3dc3bb2126919b9dbee0ded9e0c843fc9d29237d.tar.bz2 otp-3dc3bb2126919b9dbee0ded9e0c843fc9d29237d.zip |
Prepare release
-rw-r--r-- | erts/doc/src/notes.xml | 37 | ||||
-rw-r--r-- | erts/vsn.mk | 2 | ||||
-rw-r--r-- | make/otp_version_tickets | 3 |
3 files changed, 40 insertions, 2 deletions
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index 7368d3e174..972ca63272 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -31,6 +31,43 @@ </header> <p>This document describes the changes made to the ERTS application.</p> +<section><title>Erts 8.3.5.7</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Fixed bug in operator <c>band</c> of two negative + operands causing erroneous result if the absolute value + of one of the operands have the lowest <c>N*W</c> bits as + zero and the other absolute value is not larger than + <c>N*W</c> bits. <c>N</c> is an integer of 1 or larger + and <c>W</c> is 32 or 64 depending on word size.</p> + <p> + Own Id: OTP-15487 Aux Id: ERL-804 </p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p>Added an optional <c>./configure</c> flag to compile + the emulator with spectre mitigation: + <c>--with-spectre-mitigation</c></p> + <p>Note that this requires a recent version of GCC with + support for spectre mitigation and the + <c>--mindirect-branch=thunk</c> flag, such as + <c>8.1</c>.</p> + <p> + Own Id: OTP-15430 Aux Id: ERIERL-237 </p> + </item> + </list> + </section> + +</section> + <section><title>Erts 8.3.5.6</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/erts/vsn.mk b/erts/vsn.mk index 7cb89369f2..b582eb3928 100644 --- a/erts/vsn.mk +++ b/erts/vsn.mk @@ -18,7 +18,7 @@ # %CopyrightEnd% # -VSN = 8.3.5.6 +VSN = 8.3.5.7 # Port number 4365 in 4.2 # Port number 4366 in 4.3 diff --git a/make/otp_version_tickets b/make/otp_version_tickets index f8a84d098c..f1ed7c885f 100644 --- a/make/otp_version_tickets +++ b/make/otp_version_tickets @@ -1 +1,2 @@ -OTP-15342 +OTP-15430 +OTP-15487 |