diff --git a/doc/go1.11.html b/doc/go1.11.html index 274b6f114c..036c873630 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -42,7 +42,7 @@ Do not send CLs removing the interior tags from such phrases.
As announced in the Go 1.10 release notes, Go 1.11 now requires OpenBSD 6.2 or later, macOS 10.10 Yosemite or later, or Windows 7 or later; - Support for previous versions of these operating systems has been removed. + support for previous versions of these operating systems has been removed.
@@ -338,6 +338,11 @@ should run a bit faster, due to better generated code and optimizations in the core library.
+
+There were multiple performance changes to the math/big
+package as well as many changes across the tree specific to GOARCH=arm64.
+
@@ -528,19 +533,21 @@ for k := range m {
- If the string given to TempFile includes a "*", the random string
- replaces the "*". For example "myname.*.bat" will result in a random
- filename such as "myname.123456.bat". If no "*' is included the
- old behavior is retained, and the random digits are appended to the end.
+ The TempFile
+ function now supports specifying where the random characters in
+ the filename are placed. If the prefix argument
+ includes a "*", the random string replaces the
+ "*". For example, a prefix argument of "myname.*.bat" will
+ result in a random filename such as
+ "myname.123456.bat". If no "*" is
+ included the old behavior is retained, and the random digits are
+ appended to the end.
- TODO: https://golang.org/cl/74851: speed-up addMulVVW on amd64 -
ModInverse now returns nil when g and n are not relatively prime. The result was previously undefined.
@@ -672,7 +679,9 @@ for k := range m {
- TODO: https://golang.org/cl/99337: enable symlink creation on Windows 10
+ Symlink now works
+ for unprivileged users on Windows 10 on machines with Developer
+ Mode enabled.