.hgtags | 1 - doc/devel/release.html | 28 ++++++++++++++++++++++++++++ diff --git a/.hgtags b/.hgtags index f708cc7c47e2320d071605f78bf0bb0f662c80c4..1b4e15339353a0dafda05183debb563cd76c3064 100644 --- a/.hgtags +++ b/.hgtags @@ -18,4 +18,3 @@ 9482fde11a02ffd57ba0561dc8a4ac338061a3ae release.2010-03-22 57380d620ee6b65eb88da1c52784b62c94d7e72e release.2010-03-30 f98f784927abc56a61501eba0cf225966f2b0142 release.2010-04-13 6cc6c0d85fc3234fc0a5ec0a8777aa9d59d05ae8 release.2010-04-27 -6cc6c0d85fc3234fc0a5ec0a8777aa9d59d05ae8 release diff --git a/doc/devel/release.html b/doc/devel/release.html index 73504bf6670cb51d7cd1dca09f35e229a3b3620e..9086c612a9f8d0038f77fede85cf99e00d12173b 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -5,6 +5,34 @@
This page summarizes the changes between tagged releases of Go. For full details, see the Mercurial change log.
++In this release we renamed the Windows OS target from 'mingw' to 'windows'. +If you are currently building for 'mingw' you should set GOOS=windows instead. + +* 5l, 6l, 8l, runtime: make -s binaries work. +* 5l, 6l, 8l: change ELF header so that strip doesn't destroy binary. +* 8l: fix absolute path detection on Windows. +* big: new functions, optimizations, and cleanups, + add bitwise methods for Int (thanks Evan Shaw). +* bytes: Change IndexAny to look for UTF-8 encoded characters. +* darwin: bsdthread_create can fail; print good error. +* fmt: %T missing print+for nil (thanks Christopher Wedgwood). +* gc: many fixes. +* misc/cgo/gmp: fix bug in SetString. +* net: fix resolv.conf EOF without newline bug (thanks Christopher Wedgwood). +* spec: some small clarifications (no language changes). +* syscall: add EWOULDBLOCK to sycall_nacl.go, + force O_LARGEFILE in Linux open system call, + handle EOF on pipe - special case on Windows (thanks Alex Brainman), + mingw Sleep (thanks Joe Poirier). +* test/bench: import new fasta C reference, update Go, optimizations. +* test: test of static initialization (fails). +* vector: use correct capacity in call to make. +* xml: allow text segments to end at EOF. +