aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-11-24 10:47:59 +1100
committerAndrew Gerrand <adg@golang.org>2010-11-24 10:47:59 +1100
commitfbfa971a162d57aa03ca2b3365b35c4d0998aea4 (patch)
treeb28a9b3b07066e138fe02916c810c8006ac26fc7
parentde3a3976153a75ae00bbbdff9acb6624e9159702 (diff)
downloadgo-weekly.2010-11-23.tar.gz
go-weekly.2010-11-23.zip
release.2010-11-23weekly.2010-11-23
R=nigeltao CC=golang-dev https://golang.org/cl/3293041
-rw-r--r--.hgtags1
-rw-r--r--doc/devel/release.html32
2 files changed, 32 insertions, 1 deletions
diff --git a/.hgtags b/.hgtags
index f19b6c0244..26af925c06 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 34887b49e7..4c62194e52 100644
--- a/doc/devel/release.html
+++ b/doc/devel/release.html
@@ -5,6 +5,38 @@
<p>This page summarizes the changes between tagged releases of Go.
For full details, see the <a href="http://code.google.com/p/go/source/list">Mercurial change log</a>.</p>
+<h3 id="2010-11-23">2010-11-23</h3>
+
+<pre>
+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).
+</pre>
+
<h3 id="2010-11-10">2010-11-10</h3>
<pre>