.hgtags | 1 - doc/devel/release.html | 35 +++++++++++++++++++++++++++++++++++ diff --git a/.hgtags b/.hgtags index 59a47eb2163b659074c8cf8bdda0798e48dad2ec..0f5a95754800803c539c53cea525509594e07852 100644 --- a/.hgtags +++ b/.hgtags @@ -14,4 +14,3 @@ 53fec18b83e2b93baafba4733b59bb86b8c1988e release.2010-02-17 4a0661b86e50eae734dbe43ed1312c4a0304676b release.2010-02-23 a215d03e7ee1013b2abe3f1e2c84457ec51c68e4 release.2010-03-04 194d473264c1a015803d07bed200e0c312aca43e release.2010-03-15 -194d473264c1a015803d07bed200e0c312aca43e release diff --git a/doc/devel/release.html b/doc/devel/release.html index c9fb0a3febb6f45472681519272402844ae8bea0..1dd4b3f5db88fcf87f419c20a8e28e38ac4199f6 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -5,6 +5,41 @@
This page summarizes the changes between tagged releases of Go. For full details, see the Mercurial change log.
++With this release we announce the launch of the Go Blog: + http://blog.golang.org/ +The first post is a brief update covering what has happened since the launch. + +This release contains some new packages and functionality, and many fixes: +* 6g/8g: fix issues with complex data types, other bug fixes. +* Makefiles: refactored to make writing external Makefiles easier. +* crypto/rand: new package. +* godoc: implemented command-line search via RPC, + improved comment formatting: recognize URLs. +* gofmt: more consistent formatting of const/var decls. +* http: add Error helper function, + add ParseQuery (thanks Petar Maymounkov), + change RawPath to mean raw path, not raw everything-after-scheme. +* image/jpeg: fix typos. +* json: add MarshalIndent (accepts user-specified indent string). +* math: add Gamma function (thanks Charles L. Dorian). +* misc/bbedit: support for cmplx, real, imag (thanks Anthony Starks). +* misc/vim: add new complex types, functions and literals. +* net: fix IPMask.String not to crash on all-0xff mask. +* os: drop File finalizer after normal Close. +* runtime: add GOROOT and Version, + lock finalizer table accesses. +* sha512: add sha384 (truncated version) (thanks Conrad Meyer). +* syscall: add const ARCH, analogous to OS. +* syscall: further additions to mingw port (thanks Alex Brainman). +* template: fixed html formatter []byte input bug. +* utf16: new package. +* version.bash: cope with ancient Mercurial. +* websocket: use URL.RawPath to construct WebSocket-Location: header. ++