From baa65fd1066c867ee647fc5a19b6107fa0f91263 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Thu, 4 Mar 2010 13:00:29 +1100 Subject: release.2010-03-04 R=rsc CC=golang-dev https://golang.org/cl/229048 --- .hgtags | 1 - doc/devel/release.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/.hgtags b/.hgtags index e35d525aad..be14a2ad02 100644 --- a/.hgtags +++ b/.hgtags @@ -12,4 +12,3 @@ a6fcf4303b0a92cce4011556b1c96044252d93af release.2009-12-22 db4262ce882d8445764312d41547ee8f11a7f7a9 release.2010-02-04 53fec18b83e2b93baafba4733b59bb86b8c1988e release.2010-02-17 4a0661b86e50eae734dbe43ed1312c4a0304676b release.2010-02-23 -4a0661b86e50eae734dbe43ed1312c4a0304676b release diff --git a/doc/devel/release.html b/doc/devel/release.html index 36e222ec26..4312374132 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.

+

2010-03-04

+ +
+There is one language change: the ability to convert a string to []byte or 
+[]int.  This deprecates the strings.Bytes and strings.Runes functions.
+You can convert your existing sources using these gofmt commands:
+	gofmt -r 'strings.Bytes(x) -> []byte(x)' -w file-or-directory-list
+	gofmt -r 'strings.Runes(x) -> []int(x)' -w file-or-directory-list
+After running these you might need to delete unused imports of the "strings" 
+package.
+
+Other changes and fixes:
+* 6l/8l/5l: add -r option
+* 8g: make a[byte(x)] truncate x
+* codereview.py: fix for compatibility with hg >=1.4.3
+* crypto/blowfish: new package (thanks Raif S. Naffah)
+* dashboard: more performance tuning
+* fmt: use String method in %q to get the value to quote.
+* gofmt: several cosmetic changes
+* http: fix handling of Connection: close, bug in http.Post
+* net: correct DNS configuration,
+	fix network timeout boundary condition,
+	put [ ] around IPv6 addresses for Dial.
+* path: add Match,
+	fix bug in Match with non-greedy stars (thanks Kevin Ballard)
+* strings: delete Bytes, Runes (see above)
+* tests: an Eratosthenesque concurrent prime sieve (thanks Anh Hai Trinh) 
+

2010-02-23

-- cgit v1.2.3-54-g00ecf