aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Donizetti <alb.donizetti@gmail.com>2017-06-13 15:59:53 +0200
committerBrad Fitzpatrick <bradfitz@golang.org>2017-06-13 17:29:06 +0000
commit17c228b29b3b0cdec7dfffa6bbc8aeca006c3461 (patch)
tree2fc7a0a4fb0855b974f707a101da0be80c13e644
parent8f9893173b70d7c2520321ff128f659e497914f4 (diff)
downloadgo-17c228b29b3b0cdec7dfffa6bbc8aeca006c3461.tar.gz
go-17c228b29b3b0cdec7dfffa6bbc8aeca006c3461.zip
doc: add encoding changes to 1.9 release notes
Updates #20587 Change-Id: I160da21ecdee07c6370be8c46cbd04d4fbb07abb Reviewed-on: https://go-review.googlesource.com/45550 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--doc/go1.9.html26
1 files changed, 10 insertions, 16 deletions
diff --git a/doc/go1.9.html b/doc/go1.9.html
index 34e6114c67..28481e5d60 100644
--- a/doc/go1.9.html
+++ b/doc/go1.9.html
@@ -149,13 +149,10 @@ type T1 = T2
better generated code, and optimizations in the core library.
</p>
-<p>
+<p> <!-- CL 39203 -->
TODO: There have been significant optimizations bringing more than 10% improvements
to implementations in the
- <a href="/pkg/foo/"><code>foo</code></a>,
- <a href="/pkg/bar/"><code>bar</code></a>,
- and
- <a href="/pkg/quux/"><code>quux</code></a>
+ <a href="/pkg/encoding/gob"><code>encoding/gob</code></a>, and ...
packages.
</p>
@@ -307,27 +304,24 @@ type T1 = T2
<dl id="encoding/asn1"><dt><a href="/pkg/encoding/asn1/">encoding/asn1</a></dt>
<dd>
<p><!-- CL 38660 -->
- TODO: <a href="https://golang.org/cl/38660">https://golang.org/cl/38660</a>: add NullBytes and NullRawValue for working with ASN.1 NULL
+ The new
+ <a href="/pkg/encoding/asn1/#NullBytes"><code>NullBytes</code></a>
+ and
+ <a href="/pkg/encoding/asn1/#NullRawValue"><code>NullRawValue</code></a>
+ represent the <code>ASN.1 NULL</code> type.
</p>
</dl><!-- encoding/asn1 -->
<dl id="encoding/base32"><dt><a href="/pkg/encoding/base32/">encoding/base32</a></dt>
<dd>
- <p><!-- CL 38634 -->
- TODO: <a href="https://golang.org/cl/38634">https://golang.org/cl/38634</a>: add Encoding.WithPadding, StdPadding, NoPadding
+ <p><!-- CL 38634 -->
+ The new <a href="/pkg/encoding/base32/#Encoding.WithPadding">Encoding.WithPadding</a>
+ method adds support for custom padding characters and disabling padding.
</p>
</dl><!-- encoding/base32 -->
-<dl id="encoding/gob"><dt><a href="/pkg/encoding/gob/">encoding/gob</a></dt>
- <dd>
- <p><!-- CL 39203 -->
- TODO: <a href="https://golang.org/cl/39203">https://golang.org/cl/39203</a>: speedup decoding of maps by zeroing values
- </p>
-
-</dl><!-- encoding/gob -->
-
<dl id="fmt"><dt><a href="/pkg/fmt/">fmt</a></dt>
<dd>
<p><!-- CL 37051 -->