Skip to content

Commit 8048bc6

Browse files
author
Erlang/OTP
committed
Prepare release
1 parent 4d23e63 commit 8048bc6

File tree

23 files changed

+168
-207
lines changed

23 files changed

+168
-207
lines changed

erts/doc/notes.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,27 @@ limitations under the License.
2323

2424
This document describes the changes made to the ERTS application.
2525

26+
## Erts 16.0.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fix Erlang to not crash when `t:io:standard_error/0` is a terminal but `t:io:standard_io/0` is not. This bug has existed since Erlang/OTP 28.0 and only effects Windows.
31+
32+
Own Id: OTP-19650 Aux Id: [GH-9872], [PR-9878]
33+
34+
- In a debug build, the BIFs for the native debugger could cause a lock order violation diagnostic from the lock checker.
35+
36+
Own Id: OTP-19665 Aux Id: [PR-9926]
37+
38+
- When building ERTS make sure correct `pcre2.h` file is included even if CFLAGS contains extra include paths.
39+
40+
Own Id: OTP-19675 Aux Id: [PR-9892]
41+
42+
[GH-9872]: https://github.com/erlang/otp/issues/9872
43+
[PR-9878]: https://github.com/erlang/otp/pull/9878
44+
[PR-9926]: https://github.com/erlang/otp/pull/9926
45+
[PR-9892]: https://github.com/erlang/otp/pull/9892
46+
2647
## Erts 16.0
2748

2849
### Fixed Bugs and Malfunctions

erts/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# %CopyrightEnd%
2121
#
2222

23-
VSN = 16.0
23+
VSN = 16.0.1
2424

2525
# Port number 4365 in 4.2
2626
# Port number 4366 in 4.3

lib/asn1/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ limitations under the License.
2323

2424
This document describes the changes made to the asn1 application.
2525

26+
## Asn1 5.4.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- The ASN.1 compiler could generate code that would cause Dialyzer with the `unmatched_returns` option to emit warnings.
31+
32+
Own Id: OTP-19638 Aux Id: [GH-9841], [PR-9846]
33+
34+
[GH-9841]: https://github.com/erlang/otp/issues/9841
35+
[PR-9846]: https://github.com/erlang/otp/pull/9846
36+
2637
## Asn1 5.4
2738

2839
### Fixed Bugs and Malfunctions

lib/asn1/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ASN1_VSN = 5.4
1+
ASN1_VSN = 5.4.1
22

33
# %CopyrightBegin%
44
#

lib/debugger/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ limitations under the License.
2323

2424
This document describes the changes made to the Debugger application.
2525

26+
## Debugger 6.0.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Restore deleted icon so that debugger does not crash on startup.
31+
32+
Own Id: OTP-19641 Aux Id: [GH-9858], [PR-9861]
33+
34+
[GH-9858]: https://github.com/erlang/otp/issues/9858
35+
[PR-9861]: https://github.com/erlang/otp/pull/9861
36+
2637
## Debugger 6.0
2738

2839
### Fixed Bugs and Malfunctions

lib/debugger/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
DEBUGGER_VSN = 6.0
1+
DEBUGGER_VSN = 6.0.1
22

33
# %CopyrightBegin%
44
#

lib/eldap/doc/notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ limitations under the License.
2323

2424
This document describes the changes made to the Eldap application.
2525

26+
## Eldap 1.2.16
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- With this change eldap's 'not' function will have specs fixed.
31+
32+
Own Id: OTP-19658 Aux Id: [PR-9859]
33+
34+
[PR-9859]: https://github.com/erlang/otp/pull/9859
35+
2636
## Eldap 1.2.15
2737

2838
### Fixed Bugs and Malfunctions

lib/eldap/vsn.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
#
77
# %CopyrightEnd%
88

9-
ELDAP_VSN = 1.2.15
9+
ELDAP_VSN = 1.2.16

lib/kernel/doc/notes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ limitations under the License.
2323

2424
This document describes the changes made to the Kernel application.
2525

26+
## Kernel 10.3.1
27+
28+
### Fixed Bugs and Malfunctions
29+
30+
- Fix bug where calling `io:setopts/1` in a shell without the `line_history` option would always disable `line_history`. This bug was introduced in Erlang/OTP 28.0.
31+
32+
Own Id: OTP-19645 Aux Id: [GH-9863], [PR-9870]
33+
34+
[GH-9863]: https://github.com/erlang/otp/issues/9863
35+
[PR-9870]: https://github.com/erlang/otp/pull/9870
36+
2637
## Kernel 10.3
2738

2839
### Fixed Bugs and Malfunctions

lib/kernel/src/kernel.appup.src

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
{<<"^10\\.2\\.5(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4747
{<<"^10\\.2\\.6(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
4848
{<<"^10\\.2\\.7(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
49+
{<<"^10\\.3$">>,[restart_new_emulator]},
50+
{<<"^10\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
4951
{<<"^9\\.0$">>,[restart_new_emulator]},
5052
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
5153
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -74,6 +76,8 @@
7476
{<<"^10\\.2\\.5(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7577
{<<"^10\\.2\\.6(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
7678
{<<"^10\\.2\\.7(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
79+
{<<"^10\\.3$">>,[restart_new_emulator]},
80+
{<<"^10\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
7781
{<<"^9\\.0$">>,[restart_new_emulator]},
7882
{<<"^9\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
7983
{<<"^9\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},

0 commit comments

Comments
 (0)