]> Cypherpunks repositories - gostls13.git/commitdiff
weekly.2011-12-06
authorAndrew Gerrand <adg@golang.org>
Wed, 7 Dec 2011 02:15:10 +0000 (13:15 +1100)
committerAndrew Gerrand <adg@golang.org>
Wed, 7 Dec 2011 02:15:10 +0000 (13:15 +1100)
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5453070

.hgtags
doc/devel/weekly.html

diff --git a/.hgtags b/.hgtags
index b751249ffc3025840ab22cc180d790aea918e0b1..adccf20ce1c734b2d66104b4cb1542b08b5a8579 100644 (file)
--- a/.hgtags
+++ b/.hgtags
@@ -97,4 +97,3 @@ f4397ad6e87c7ce5feac9b01686f1ebd6cbaac4e weekly.2011-11-08
 b4a91b6933748db1a7150c06a1b55ad506e52906 weekly.2011-11-18
 80db2da6495a20ddff8305c236825811db8c8665 weekly.2011-12-01
 0beb796b4ef8747af601ed5ea6766d5b1340086b weekly.2011-12-02
-0beb796b4ef8747af601ed5ea6766d5b1340086b weekly
index 90e773c4a5073d1003c7e130808ff3b6523b9128..1847ab9151aa9fff4008a26d396a6b5715d74d98 100644 (file)
@@ -14,6 +14,56 @@ hg pull
 hg update weekly.<i>YYYY-MM-DD</i>
 </pre>
 
+<h2 id="2011-12-06">2011-12-06</h2>
+
+<pre>
+This snapshot includes a language change and changes to the strconv and go/doc
+packages. The package changes require changes to client code.
+The language change is backwards-compatible.
+
+Type elision in arrays, slices, or maps of composite literals has been
+extended to include pointers to composite literals. Code like this
+       var t = []&T{&T{}, &T{}}
+may now be written as
+       var t = []&T{{}, {}}
+You can use gofmt -s to simplify such code.
+
+The strconv package has been given a more idiomatic and efficient interface.
+Client code can be updated with gofix. See the docs for the details:
+       http://weekly.golang.org/pkg/strconv/
+
+The go/doc package's ToHTML function now takes a []byte argument instead of a
+string.
+
+Other changes:
+* crypto/aes: eliminate some bounds checking and truncation (thanks Rémy Oudompheng).
+* crypto/x509: if a parent cert has a raw subject, use it.
+* encoding/gob: don't send type info for unexported fields.
+* exp/ssh: allow for msgUserAuthBanner during authentication (thanks Gustav Paul).
+* fmt: benchmark floating point,
+       only use Stringer or Error for strings.
+* gc: changes in export format in preparation of inlining,
+       disallow map/func equality via interface comparison,
+       use gofmt spacing when printing map type.
+* go/doc: exclude lines ending in ':' from possible headings.
+* gobuilder: -commit mode for packages,
+       cripple -package mode temporarily,
+       use new dashboard protocol.
+* godoc: improved output of examples in html (thanks Volker Dobler).
+* gofmt: handle &T in composite literal simplify.
+* goinstall: honour -install=false flag when -make=true.
+* hash: rewrite comment on Hash.Sum method.
+* html: more parser improvements (thanks Andrew Balholm).
+* image: avoid func comparison during ColorModel comparison.
+* math: add special-cases comments to Sinh and Tanh (thanks Charles L. Dorian).
+* misc/dashboard: further implementation work.
+* net, syscall: remove BindToDevice from UDPConn, IPConn (thanks Mikio Hara).
+* net/mail: correctly compare parsed times in the test.
+* os/exec: make LookPath always search CWD under Windows (thanks Benny Siegert).
+* runtime: prep for type-specific algorithms.
+* strconv: 34% to 63% faster conversions.
+</pre>
+
 <h2 id="2011-12-02">2011-12-02</h2>
 
 <pre>