Commit e954bdb0 authored by Andrew Bonventre's avatar Andrew Bonventre

doc: update go1.11 release notes

Change-Id: Ib488a78802ad730e7c6b3618eab24c259f4bebd1
Reviewed-on: https://go-review.googlesource.com/124798Reviewed-by: default avatarAndrew Bonventre <andybons@golang.org>
parent 8cbc02af
...@@ -463,7 +463,7 @@ for k := range m { ...@@ -463,7 +463,7 @@ for k := range m {
<dl id="encoding/asn1"><dt><a href="/pkg/encoding/asn1/">encoding/asn1</a></dt> <dl id="encoding/asn1"><dt><a href="/pkg/encoding/asn1/">encoding/asn1</a></dt>
<dd> <dd>
<p><!-- CL 110561 --> <p><!-- CL 110561 -->
TODO: <a href="https://golang.org/cl/110561">https://golang.org/cl/110561</a>: allow Marshaling and Unmarshaling private tag class <code>Marshal</code> and <code>Unmarshal</code> now support private class annotations for fields.
</p> </p>
</dl><!-- encoding/asn1 --> </dl><!-- encoding/asn1 -->
...@@ -518,7 +518,8 @@ for k := range m { ...@@ -518,7 +518,8 @@ for k := range m {
<dl id="image/gif"><dt><a href="/pkg/image/gif/">image/gif</a></dt> <dl id="image/gif"><dt><a href="/pkg/image/gif/">image/gif</a></dt>
<dd> <dd>
<p><!-- CL 93076 --> <p><!-- CL 93076 -->
TODO: <a href="https://golang.org/cl/93076">https://golang.org/cl/93076</a>: support non-looping animated gifs (LoopCount=-1) Non-looping animated GIFs are now supported. They are denoted by having a
<code><a href="/pkg/image/gif/#GIF.LoopCount">LoopCount</a></code> of -1.
</p> </p>
</dl><!-- image/gif --> </dl><!-- image/gif -->
...@@ -526,7 +527,10 @@ for k := range m { ...@@ -526,7 +527,10 @@ for k := range m {
<dl id="io/ioutil"><dt><a href="/pkg/io/ioutil/">io/ioutil</a></dt> <dl id="io/ioutil"><dt><a href="/pkg/io/ioutil/">io/ioutil</a></dt>
<dd> <dd>
<p><!-- CL 105675 --> <p><!-- CL 105675 -->
TODO: <a href="https://golang.org/cl/105675">https://golang.org/cl/105675</a>: change TempFile prefix to a pattern If the string given to <code>TempFile</code> 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.
</p> </p>
</dl><!-- io/ioutil --> </dl><!-- io/ioutil -->
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment