diff options
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/doc/src/notes.xml | 60 | ||||
-rw-r--r-- | lib/stdlib/src/stdlib.appup.src | 2 | ||||
-rw-r--r-- | lib/stdlib/vsn.mk | 2 |
3 files changed, 63 insertions, 1 deletions
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index a2ad8c6fa2..96d1ffddc8 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -31,6 +31,66 @@ </header> <p>This document describes the changes made to the STDLIB application.</p> +<section><title>STDLIB 3.13.2</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p>The functions <c>digraph:in_edges/2</c> and + <c>digraph:out_edges/2</c> would return false edges if + called for a vertex that had a '_' atom in its name + term.</p> + <p> + Own Id: OTP-16655</p> + </item> + <item> + <p><c>filelib:wildcard("not-a-directory/..")</c> should + return an empty list. On Windows it returned + <c>"not-a-directory/.."</c>.</p> + <p> + Own Id: OTP-16700</p> + </item> + <item> + <p> + Fix the typespec of shell_docs:render to use the correct + type for an MFA.</p> + <p> + Own Id: OTP-16739</p> + </item> + <item> + <p> + Fix uri_string:recompose/1 when host is present but input + path is not absolute.</p> + <p> + This change prevents the recompose operation to change + the top level domain of the host when the path does not + start with a slash.</p> + <p> + Own Id: OTP-16751 Aux Id: ERL-1283 </p> + </item> + <item> + <p>The <c>epp</c> module would return a badly formed + error term when an '<c>if</c>' preprocessor directive + referenced an undefined symbol. <c>epp:format_error/1</c> + would crash when called with the bad error term.</p> + <p> + Own Id: OTP-16816 Aux Id: ERL-1310 </p> + </item> + <item> + <p> + <c>lists:sublist(List, Start, Len)</c> failed with an + exception if <c>Start > length(List) + 1</c> even + though it is explicitly documented that "It is not an + error for <c>Start+Len</c> to exceed the length of the + list".</p> + <p> + Own Id: OTP-16830 Aux Id: ERL-1334, PR-2718 </p> + </item> + </list> + </section> + +</section> + <section><title>STDLIB 3.13.1</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/stdlib/src/stdlib.appup.src b/lib/stdlib/src/stdlib.appup.src index 5038e9e970..f66ff560b3 100644 --- a/lib/stdlib/src/stdlib.appup.src +++ b/lib/stdlib/src/stdlib.appup.src @@ -39,6 +39,7 @@ {<<"^3\\.12\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, {<<"^3\\.13$">>,[restart_new_emulator]}, {<<"^3\\.13\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, + {<<"^3\\.13\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, {<<"^3\\.5$">>,[restart_new_emulator]}, {<<"^3\\.5\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, {<<"^3\\.5\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, @@ -66,6 +67,7 @@ {<<"^3\\.12\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, {<<"^3\\.13$">>,[restart_new_emulator]}, {<<"^3\\.13\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, + {<<"^3\\.13\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, {<<"^3\\.5$">>,[restart_new_emulator]}, {<<"^3\\.5\\.0(?:\\.[0-9]+)+$">>,[restart_new_emulator]}, {<<"^3\\.5\\.1(?:\\.[0-9]+)*$">>,[restart_new_emulator]}, diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk index 169a4d8f0b..a03fc23e00 100644 --- a/lib/stdlib/vsn.mk +++ b/lib/stdlib/vsn.mk @@ -1 +1 @@ -STDLIB_VSN = 3.13.1 +STDLIB_VSN = 3.13.2 |