]> Cypherpunks repositories - gostls13.git/commitdiff
release.2010-10-20 weekly.2010-10-20
authorAndrew Gerrand <adg@golang.org>
Thu, 21 Oct 2010 00:33:41 +0000 (11:33 +1100)
committerAndrew Gerrand <adg@golang.org>
Thu, 21 Oct 2010 00:33:41 +0000 (11:33 +1100)
R=r, rsc
CC=golang-dev
https://golang.org/cl/2629041

.hgtags
doc/devel/release.html

diff --git a/.hgtags b/.hgtags
index 1d8336da222914a49022f667cb15d28327856b57..ecaa4558295133d8a1c37c0739b444e8b6b350b8 100644 (file)
--- a/.hgtags
+++ b/.hgtags
@@ -34,4 +34,3 @@ db904d88dc0ebf6ee5b55e44088915695c1223ee release.2010-07-29
 c2b8c9f13fb8ad2b56920d9da2928c5314ebf725 release.2010-09-29
 7c2e97710bf49cdbe388260958a6674afefb6c0f release.2010-10-13
 ca4f9687cec0b9c4732afd57b8c2786c7fe242de release.2010-10-13.1
-ca4f9687cec0b9c4732afd57b8c2786c7fe242de release
index ca15ced1c413a1be4531aa2c0ff7206070e9b620..e4c42382bd4faea10a724aa2184bcb86a1672af1 100644 (file)
@@ -5,6 +5,42 @@
 <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-10-20">2010-10-20</h3>
+
+<pre>
+This release removes the log package's deprecated functions.
+Code that has not been updated to use the new interface will break.
+See the previous release notes for details:
+       http://golang.org/doc/devel/release.html#2010-10-13
+
+Also included are major improvements to the linker. It is now faster, 
+uses less memory, and more parallelizable (but not yet parallel).
+
+The nntp package has been removed from the standard library.
+Its new home is the nntp-go project at Google Code:
+       http://code.google.com/p/nntp-go
+You can install it with goinstall:
+       goinstall nntp-go.googlecode.com/hg/nntp
+And import it in your code like so:
+       import "nntp-go.googlecode.com/hg/nntp"
+
+Other changes:
+* 6g: avoid too-large immediate constants.
+* 8l, runtime: initial support for Plan 9 (thanks Yuval Pavel Zholkover).
+* 6l, 8l: more improvements on exporting debug information (DWARF).
+* arm: code gen fixes. Most tests now pass, except for floating point code.
+* big: add random number generation (thanks Florian Uekermann).
+* gc: keep track of real actual type of identifiers,
+       report that shift must be unsigned integer,
+       select receive with implicit conversion.
+* goplay: fix to run under windows (thanks Yasuhiro Matsumoto).
+* http: do not close connection after sending HTTP/1.0 request.
+* netchan: add new method Hangup to terminate transmission on a channel.
+* os: change TestForkExec so it can run on windows (thanks Yasuhiro Matsumoto).
+* runtime: don't let select split stack.
+* syscall/arm: correct 64-bit system call arguments.
+</pre>
+
 <h3 id="2010-10-13">2010-10-13</h3>
 
 <pre>