diff --git a/.hgtags b/.hgtags index f19b6c0244e..26af925c06f 100644 --- a/.hgtags +++ b/.hgtags @@ -38,4 +38,3 @@ ca4f9687cec0b9c4732afd57b8c2786c7fe242de release.2010-10-13.1 4d5b0816392116d3a3452bb275b6dab6c6456278 release.2010-10-27 c627e23260c7ddf4a1fcda6ef3197c98fa22551d release.2010-11-02 a7800e20064a39585aa3ee339c2b7454ae1ce6d5 release.2010-11-10 -a7800e20064a39585aa3ee339c2b7454ae1ce6d5 release diff --git a/doc/devel/release.html b/doc/devel/release.html index 34887b49e73..4c62194e528 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -5,6 +5,38 @@
This page summarizes the changes between tagged releases of Go. For full details, see the Mercurial change log.
++This release includes a backwards-incompatible package change to the +sort.Search function (introduced in the last release). +See the change for details and examples of how you might change your code: + http://code.google.com/p/go/source/detail?r=102866c369 + +* build: automatically #define _64BIT in 6c. +* cgo: print required space after parameter name in wrapper function. +* crypto/cipher: new package to replace crypto/block (thanks Adam Langley). +* crypto/elliptic: new package, implements elliptic curves over prime fields (thanks Adam Langley). +* crypto/x509: policy OID support and fixes (thanks Adam Langley). +* doc: add link to codewalks, + fix recover() documentation (thanks Anschel Schaffer-Cohen), + explain how to write Makefiles for commands. +* exec: enable more tests on windows (thanks Alex Brainman). +* gc: adjustable hash code in typecheck of composite literals + (thanks to vskrap, Andrey Mirtchovski, and Eoghan Sherry). +* gc: better error message for bad type in channel send (thanks Anthony Martin). +* godoc: bug fix in relativePath, + compute search index for all file systems under godoc's observation, + use correct time stamp to indicate accuracy of search result. +* index/suffixarray: use sort.Search. +* net: add ReadFrom and WriteTo windows version (thanks Wei Guangjing). +* reflect: remove unnecessary casts in Get methods. +* rpc: add RegisterName to allow override of default type name. +* runtime: free memory allocated by windows CommandLineToArgv (thanks Alex Brainman). +* sort: simplify Search (thanks Roger Peppe). +* strings: add LastIndexAny (thanks Benny Siegert). ++