doc/devel/release.html | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++ doc/devel/weekly.html | 2 +- diff --git a/doc/devel/release.html b/doc/devel/release.html index 8f28945ef73ccebfc35219d3dafc79a202546bc4..d632200d399981cd3031b75ede67918e63aedf4b 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 @@

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 e45c48a12fdc08be454f61422d431e17411baf2d..b576a910d72f199ea8645cb2d05d0b8fc9c0e4af 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.