diff --git a/.hgtags b/.hgtags index b3d9bbf0a74..cbfece8a94f 100644 --- a/.hgtags +++ b/.hgtags @@ -36,4 +36,3 @@ c2b8c9f13fb8ad2b56920d9da2928c5314ebf725 release.2010-09-29 ca4f9687cec0b9c4732afd57b8c2786c7fe242de release.2010-10-13.1 79997f0e5823ee9d13a34ca9971a9d8811df1c4a release.2010-10-20 4d5b0816392116d3a3452bb275b6dab6c6456278 release.2010-10-27 -4d5b0816392116d3a3452bb275b6dab6c6456278 release diff --git a/doc/devel/release.html b/doc/devel/release.html index b9d70c7c6ee..321f290a46d 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -5,6 +5,43 @@
This page summarizes the changes between tagged releases of Go. For full details, see the Mercurial change log.
++This release includes a language change: the new built-in function, append. +Append makes growing slices much simpler. See the spec for details: + http://golang.org/doc/go_spec.html#Appending_and_copying_slices + +Other changes: +* 8l: pe generation fixes (thanks Alex Brainman). +* doc: Effective Go: append and a few words about "..." args. +* build: fiddle with make variables. +* codereview: fix sync and download in Python 2.7 (thanks Fazlul Shahriar). +* debug/pe, cgo: add windows support (thanks Wei Guangjing+). +* go/ast: add Inspect function for easy AST inspection w/o a visitor. +* go/printer: do not remove parens around composite literals starting with + a type name in control clauses. +* go/scanner: bug fixes, revisions, and more tests. +* gob: several fixes and documentation updates. +* godoc: bug fix (bug introduced with revision 3ee58453e961). +* gotest: print empty benchmark list in a way that gofmt will leave alone. +* http server: correctly respond with 304 NotModified (thanks Michael Hoisie). +* kate: update list of builtins (thanks Evan Shaw). +* libutf: update to Unicode 5.2.0 to match pkg/unicode (thanks Anthony Martin). +* misc/bbedit: update list of builtins (thanks Anthony Starks). +* misc/vim: update list of builtins. +* mkrunetype: install a Makefile and tweak it slightly so it can be built. +* netchan: fix locking bug. +* pidigits: minor improvements (thanks Evan Shaw). +* rpc: fix client deadlock bug. +* src: use append where appropriate (often instead of vector). +* strings: add Contains helper function (thanks Brad Fitzpatrick). +* syscall: SIO constants for Linux (thanks Albert Strasheim), + Stat(path) on windows (thanks Alex Brainman). +* test/ken/convert.go: add conversion torture test. +* testing: add Benchmark (thanks Roger Peppe). +