Skip to content

Commit 50a3b7d

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent af692a6 commit 50a3b7d

File tree

13 files changed

+128
-13
lines changed

13 files changed

+128
-13
lines changed

erts/doc/src/notes.xml

+20
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,26 @@
3131
</header>
3232
<p>This document describes the changes made to the ERTS application.</p>
3333

34+
<section><title>Erts 12.3.2.13</title>
35+
36+
<section><title>Fixed Bugs and Malfunctions</title>
37+
<list>
38+
<item>
39+
<p>The following functions are now much faster when given
40+
a long list or binary:</p> <list>
41+
<item>erlang:list_to_integer/1</item>
42+
<item>erlang:binary_to_integer/1</item>
43+
<item>erlang:binary_to_integer/2</item>
44+
<item>erlang:list_to_integer/2</item>
45+
<item>string:to_integer/1</item> </list>
46+
<p>
47+
Own Id: OTP-18659 Aux Id: PR-7426 </p>
48+
</item>
49+
</list>
50+
</section>
51+
52+
</section>
53+
3454
<section><title>Erts 12.3.2.12</title>
3555

3656
<section><title>Fixed Bugs and Malfunctions</title>

erts/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# %CopyrightEnd%
1919
#
2020

21-
VSN = 12.3.2.12
21+
VSN = 12.3.2.13
2222

2323
# Port number 4365 in 4.2
2424
# Port number 4366 in 4.3

lib/compiler/doc/src/notes.xml

+16
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,22 @@
3232
<p>This document describes the changes made to the Compiler
3333
application.</p>
3434

35+
<section><title>Compiler 8.1.1.5</title>
36+
37+
<section><title>Fixed Bugs and Malfunctions</title>
38+
<list>
39+
<item>
40+
<p>The compiler could be very slow when compiling guards
41+
with multiple guard tests separated with '<c>or</c>' or
42+
'<c>;</c>'.</p>
43+
<p>
44+
Own Id: OTP-18617 Aux Id: GH-7338 </p>
45+
</item>
46+
</list>
47+
</section>
48+
49+
</section>
50+
3551
<section><title>Compiler 8.1.1.4</title>
3652

3753
<section><title>Fixed Bugs and Malfunctions</title>

lib/compiler/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
COMPILER_VSN = 8.1.1.4
1+
COMPILER_VSN = 8.1.1.5

lib/debugger/doc/src/notes.xml

+15
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,21 @@
3333
<p>This document describes the changes made to the Debugger
3434
application.</p>
3535

36+
<section><title>Debugger 5.2.1.1</title>
37+
38+
<section><title>Fixed Bugs and Malfunctions</title>
39+
<list>
40+
<item>
41+
<p>The call <c>int:no_break(Module)</c> did not remove
42+
any breakpoints.</p>
43+
<p>
44+
Own Id: OTP-18644 Aux Id: GH-7336 </p>
45+
</item>
46+
</list>
47+
</section>
48+
49+
</section>
50+
3651
<section><title>Debugger 5.2.1</title>
3752

3853
<section><title>Fixed Bugs and Malfunctions</title>

lib/debugger/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DEBUGGER_VSN = 5.2.1
1+
DEBUGGER_VSN = 5.2.1.1

lib/ssh/doc/src/notes.xml

+16
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,22 @@
3030
<file>notes.xml</file>
3131
</header>
3232

33+
<section><title>Ssh 4.13.2.3</title>
34+
35+
<section><title>Fixed Bugs and Malfunctions</title>
36+
<list>
37+
<item>
38+
<p>
39+
With this change, error logging related crashes in
40+
ssh_connection_handler module are fixed.</p>
41+
<p>
42+
Own Id: OTP-18620 Aux Id: OTP-18386,PR-6611 </p>
43+
</item>
44+
</list>
45+
</section>
46+
47+
</section>
48+
3349
<section><title>Ssh 4.13.2.2</title>
3450

3551
<section><title>Fixed Bugs and Malfunctions</title>

lib/ssh/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#-*-makefile-*- ; force emacs to enter makefile-mode
22

3-
SSH_VSN = 4.13.2.2
3+
SSH_VSN = 4.13.2.3
44
APP_VSN = "ssh-$(SSH_VSN)"

lib/ssl/doc/src/notes.xml

+29
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,35 @@
2727
</header>
2828
<p>This document describes the changes made to the SSL application.</p>
2929

30+
<section><title>SSL 10.7.3.8</title>
31+
32+
<section><title>Fixed Bugs and Malfunctions</title>
33+
<list>
34+
<item>
35+
<p>
36+
Added keylog information to all protocol versions in
37+
<c>ssl:connection_information/2</c>.</p>
38+
<p>
39+
Own Id: OTP-18643 Aux Id: ERIERL-932 </p>
40+
</item>
41+
</list>
42+
</section>
43+
44+
45+
<section><title>Improvements and New Features</title>
46+
<list>
47+
<item>
48+
<p>
49+
Add RFC-6083 considerations for DTLS to enable gen_sctp
50+
based callback for the transport.</p>
51+
<p>
52+
Own Id: OTP-18618 Aux Id: ERIERL-932 </p>
53+
</item>
54+
</list>
55+
</section>
56+
57+
</section>
58+
3059
<section><title>SSL 10.7.3.7</title>
3160

3261
<section><title>Fixed Bugs and Malfunctions</title>

lib/ssl/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SSL_VSN = 10.7.3.7
1+
SSL_VSN = 10.7.3.8

lib/stdlib/doc/src/notes.xml

+20
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,26 @@
3131
</header>
3232
<p>This document describes the changes made to the STDLIB application.</p>
3333

34+
<section><title>STDLIB 3.17.2.4</title>
35+
36+
<section><title>Fixed Bugs and Malfunctions</title>
37+
<list>
38+
<item>
39+
<p>The following functions are now much faster when given
40+
a long list or binary:</p> <list>
41+
<item>erlang:list_to_integer/1</item>
42+
<item>erlang:binary_to_integer/1</item>
43+
<item>erlang:binary_to_integer/2</item>
44+
<item>erlang:list_to_integer/2</item>
45+
<item>string:to_integer/1</item> </list>
46+
<p>
47+
Own Id: OTP-18659 Aux Id: PR-7426 </p>
48+
</item>
49+
</list>
50+
</section>
51+
52+
</section>
53+
3454
<section><title>STDLIB 3.17.2.3</title>
3555

3656
<section><title>Improvements and New Features</title>

lib/stdlib/vsn.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
STDLIB_VSN = 3.17.2.3
1+
STDLIB_VSN = 3.17.2.4

make/otp_version_tickets

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
OTP-18556
2-
OTP-18560
3-
OTP-18569
4-
OTP-18570
5-
OTP-18593
6-
OTP-18595
7-
OTP-18597
1+
OTP-18617
2+
OTP-18618
3+
OTP-18620
4+
OTP-18643
5+
OTP-18644
6+
OTP-18659

0 commit comments

Comments
 (0)