summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlang/OTP <otp@erlang.org>2021-07-30 11:00:28 +0200
committerErlang/OTP <otp@erlang.org>2021-07-30 11:00:28 +0200
commit1b5ad070f05055e894f83fafec837f91cae21252 (patch)
tree162ad2755e52223bf9fe8ce9a7d363b929660a08
parent51a6567c65d77587578a7a946d2655d6f0b2fa87 (diff)
downloaderlang-1b5ad070f05055e894f83fafec837f91cae21252.tar.gz
Prepare release
-rw-r--r--lib/kernel/doc/src/notes.xml21
-rw-r--r--lib/kernel/src/kernel.appup.src6
-rw-r--r--lib/kernel/vsn.mk2
-rw-r--r--make/otp_version_tickets7
4 files changed, 27 insertions, 9 deletions
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml
index 6fdf93317f..c001b67094 100644
--- a/lib/kernel/doc/src/notes.xml
+++ b/lib/kernel/doc/src/notes.xml
@@ -31,6 +31,27 @@
</header>
<p>This document describes the changes made to the Kernel application.</p>
+<section><title>Kernel 8.0.2</title>
+
+ <section><title>Fixed Bugs and Malfunctions</title>
+ <list>
+ <item>
+ <p>For <c>gen_tcp:connect/3,4</c> it is possible to
+ specify a specific source port, which should be enough to
+ bind the socket to an address with that port before
+ connecting. </p><p>Unfortunately that feature was lost in
+ OTP-17216 that made it mandatory to specify the source
+ address to get an address binding, and ignored a
+ specified source port if no source address was specified.
+ </p><p>That bug has now been corrected. </p>
+ <p>
+ Own Id: OTP-17536 Aux Id: OTP-17216, ERIERL-677 </p>
+ </item>
+ </list>
+ </section>
+
+</section>
+
<section><title>Kernel 8.0.1</title>
<section><title>Fixed Bugs and Malfunctions</title>
diff --git a/lib/kernel/src/kernel.appup.src b/lib/kernel/src/kernel.appup.src
index c79de5c472..aa54a3f608 100644
--- a/lib/kernel/src/kernel.appup.src
+++ b/lib/kernel/src/kernel.appup.src
@@ -46,7 +46,8 @@
{<<"^7\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
{<<"^7\\.3\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^8\\.0$">>,[restart_new_emulator]},
- {<<"^8\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}],
+ {<<"^8\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
+ {<<"^8\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}],
[{<<"^6\\.4$">>,[restart_new_emulator]},
{<<"^6\\.4\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
{<<"^6\\.4\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
@@ -65,4 +66,5 @@
{<<"^7\\.3\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
{<<"^7\\.3\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]},
{<<"^8\\.0$">>,[restart_new_emulator]},
- {<<"^8\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}]}.
+ {<<"^8\\.0\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]},
+ {<<"^8\\.0\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}]}.
diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk
index 2b8a6b2e29..3d47a1f1a0 100644
--- a/lib/kernel/vsn.mk
+++ b/lib/kernel/vsn.mk
@@ -1 +1 @@
-KERNEL_VSN = 8.0.1
+KERNEL_VSN = 8.0.2
diff --git a/make/otp_version_tickets b/make/otp_version_tickets
index 8a93b6e67b..dd321b5ecc 100644
--- a/make/otp_version_tickets
+++ b/make/otp_version_tickets
@@ -1,6 +1 @@
-OTP-17150
-OTP-17475
-OTP-17506
-OTP-17509
-OTP-17525
-OTP-17529
+OTP-17536