summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-08-05 13:18:49 +1000
committerAndrew Gerrand <adg@golang.org>2010-08-05 13:18:49 +1000
commitbca07dbd54e868ab10e19978cf832b7f5a12baae (patch)
tree526302fb2348830f4e3df745e82cb4c7e650f77c
parent3e05c107263d9c92a0276eeeddfc34bcb58057a8 (diff)
downloadgo-weekly.2010-08-04.tar.gz
release.2010-08-04weekly.2010-08-04
R=rsc CC=golang-dev http://codereview.appspot.com/1892049
-rw-r--r--doc/devel/release.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/devel/release.html b/doc/devel/release.html
index 8383ba8fa..60ee91932 100644
--- a/doc/devel/release.html
+++ b/doc/devel/release.html
@@ -5,6 +5,40 @@
<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-08-04">2010-08-04</h3>
+
+<pre>
+This release includes a change to os.Open (and co.). The file permission
+argument has been changed to a uint32. Your code may require changes - a simple
+conversion operation at most.
+
+Other changes:
+* amd64: use segment memory for thread-local storage.
+* arm: add gdb support to android launcher script,
+ bugfixes (stack clobbering, indices),
+ disable another flaky test,
+ remove old qemu dependency from gotest.
+* bufio: introduce Peek.
+* bytes: added test case for explode with blank string (thanks Scott Lawrence).
+* cgo: correct multiple return value function invocations (thanks Christian Himpel).
+* crypto/x509: unwrap Subject Key Identifier (thanks Adam Langley).
+* gc: index bounds tests and other fixes.
+* gofmt/go/parser: strengthen syntax checks.
+* goinstall: check for error from exec.*Cmd.Wait() (thanks Alex Brainman).
+* image/png: use image-specific methods for checking opacity.
+* image: introduce Gray and Gray16 types,
+ remove the named colors except for Black and White.
+* json: object members must have a value (thanks Anthony Martin).
+* misc/vim: highlight misspelled words only in comments (thanks Christian Himpel).
+* os: Null device (thanks Peter Mundy).
+* runtime: do not fall through in SIGBUS/SIGSEGV.
+* strings: fix Split("", "", -1) (thanks Scott Lawrence).
+* syscall: make go errors not clash with windows errors (thanks Alex Brainman).
+* test/run: diff old new,
+* websocket: correct challenge response (thanks Tarmigan Casebolt),
+ fix bug involving spaces in header keys (thanks Bill Neubauer).
+</pre>
+
<h3 id="2010-07-29">2010-07-29</h3>
<pre>