@@ -92,6 +92,16 @@ Breaking changes
9292Library improvements
9393--------------------
9494
95+ * Strings ([ #16107 ] ):
96+
97+ * The ` UTF8String ` and ` ASCIIString ` types have been merged into a single
98+ ` String ` type ([ #16058 ] ). Use ` isascii(s) ` to check whether
99+ a string contains only ASCII characters.
100+
101+ * The basic string construction routines are now ` string(args...) ` ,
102+ ` String(s) ` , ` unsafe_string(ptr) ` (formerly ` bytestring(ptr) ` ), and
103+ ` unsafe_wrap(String, ptr) ` (formerly ` pointer_to_array ` ) ([ #16731 ] ).
104+
95105 * Most of the combinatorics functions have been moved from ` Base `
96106 to the [ Combinatorics.jl package] ( https://github.com/JuliaLang/Combinatorics.jl ) ([ #13897 ] ).
97107
@@ -251,7 +261,10 @@ Deprecated or removed
251261[ #15609 ] : https://github.com/JuliaLang/julia/issues/15609
252262[ #15731 ] : https://github.com/JuliaLang/julia/issues/15731
253263[ #15763 ] : https://github.com/JuliaLang/julia/issues/15763
264+ [ #16058 ] : https://github.com/JuliaLang/julia/issues/16058
265+ [ #16107 ] : https://github.com/JuliaLang/julia/issues/16107
254266[ #16219 ] : https://github.com/JuliaLang/julia/issues/16219
255267[ #16362 ] : https://github.com/JuliaLang/julia/issues/16362
256268[ #16403 ] : https://github.com/JuliaLang/julia/issues/16403
257269[ #16481 ] : https://github.com/JuliaLang/julia/issues/16481
270+ [ #16731 ] : https://github.com/JuliaLang/julia/issues/16731
0 commit comments