From f833613aec89531e785015217cfe8734bba21964 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Thu, 30 Jun 2011 09:49:11 +1000 Subject: [release-branch.r58] document release.r58 ??? CL 4643058 / 0a5e3e664637 document release.r58 R=rsc, r, bsiegert CC=golang-dev http://codereview.appspot.com/4643058 ??? R=golang-dev CC=golang-dev http://codereview.appspot.com/4641084 --- doc/devel/release.html | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++ doc/devel/weekly.html | 2 +- 2 files changed, 74 insertions(+), 1 deletion(-) diff --git a/doc/devel/release.html b/doc/devel/release.html index 8f28945ef..d632200d3 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -14,6 +14,78 @@ hg pull hg update release.rNN +

r58 (released 2011/06/29)

+ +

+The r58 release corresponds to +weekly.2011-06-09 +with additional bug fixes. +This section highlights the most significant changes in this release. +For a more detailed summary, see the +weekly release notes. +For complete information, see the +Mercurial change list. +

+ +

Language

+ +

+This release fixes a use of uninitialized memory in programs that misuse goto. +

+ +

Packages

+ +

+As usual, gofix will handle the bulk of the rewrites +necessary for these changes to package APIs. +

+ +

+Package http drops the finalURL return +value from the Client.Get method. The value +is now available via the new Request field on http.Response. +Most instances of the type map[string][]string in have been +replaced with the new Values type. +

+ +

+Package exec has been redesigned with a more +convenient and succinct API. +

+ +

+Package strconv's Quote +function now escapes only those Unicode code points not classified as printable +by unicode.IsPrint. +Previously Quote would escape all non-ASCII characters. +This also affects the fmt package's "%q" +formatting directive. The previous quoting behavior is still available via +strconv's new QuoteToASCII function. +

+ +

+Package os/signal's +Signal and +UnixSignal types have been moved to the +os package. +

+ +

+Package image/draw is the new name for +exp/draw. The GUI-related code from exp/draw is now +located in the exp/gui package. +

+ +

Tools

+ +

+Goinstall now observes the GOPATH environment +variable to build and install your own code and external libraries outside of +the Go tree (and avoid writing Makefiles). +

+ +

r57 (released 2011/05/03)

@@ -162,6 +234,7 @@ For other uses, see the runtime/pprof document

Minor revisions

r57.1 fixes a nil pointer dereference in http.FormFile.

+

r57.2 fixes a use of uninitialized memory in programs that misuse goto.

r56 (released 2011/03/16)

diff --git a/doc/devel/weekly.html b/doc/devel/weekly.html index e45c48a12..b576a910d 100644 --- a/doc/devel/weekly.html +++ b/doc/devel/weekly.html @@ -14,7 +14,7 @@ hg pull hg update weekly.YYYY-MM-DD -

2011-06-09

+

2011-06-09 (base for r58)

 This release includes changes to the strconv, http, and exp/draw packages.
-- 
cgit v1.2.1