From: Andrew Bonventre Date: Wed, 18 Jul 2018 20:44:07 +0000 (-0400) Subject: doc: update go1.11 release notes X-Git-Tag: go1.11beta2~37 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e954bdb021e075696b93a229863cbbcbade11b0a;p=gostls13.git doc: update go1.11 release notes Change-Id: Ib488a78802ad730e7c6b3618eab24c259f4bebd1 Reviewed-on: https://go-review.googlesource.com/124798 Reviewed-by: Andrew Bonventre --- diff --git a/doc/go1.11.html b/doc/go1.11.html index 8b49e55990..72d35250ea 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -463,7 +463,7 @@ for k := range m {
encoding/asn1

- TODO: https://golang.org/cl/110561: allow Marshaling and Unmarshaling private tag class + Marshal and Unmarshal now support private class annotations for fields.

@@ -518,7 +518,8 @@ for k := range m {
image/gif

- TODO: https://golang.org/cl/93076: support non-looping animated gifs (LoopCount=-1) + Non-looping animated GIFs are now supported. They are denoted by having a + LoopCount of -1.

@@ -526,7 +527,10 @@ for k := range m {
io/ioutil

- TODO: https://golang.org/cl/105675: change TempFile prefix to a pattern + 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.