aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-10-21 11:33:41 +1100
committerAndrew Gerrand <adg@golang.org>2010-10-21 11:33:41 +1100
commitec2c9937f4515828875751e0ce3527b91df283b3 (patch)
tree3c616adf84c13d7e2362c8decbad5a4ed7674dd7
parent3ee49850a08bed8346e319cf6230f1c13a5f526b (diff)
downloadgo-ec2c9937f4515828875751e0ce3527b91df283b3.tar.gz
go-ec2c9937f4515828875751e0ce3527b91df283b3.zip
release.2010-10-20weekly.2010-10-20
R=r, rsc CC=golang-dev https://golang.org/cl/2629041
-rw-r--r--.hgtags1
-rw-r--r--doc/devel/release.html36
2 files changed, 36 insertions, 1 deletions
diff --git a/.hgtags b/.hgtags
index 1d8336da22..ecaa455829 100644
--- 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
diff --git a/doc/devel/release.html b/doc/devel/release.html
index ca15ced1c4..e4c42382bd 100644
--- a/doc/devel/release.html
+++ b/doc/devel/release.html
@@ -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>