.hgtags | 2 -- doc/devel/release.html | 25 +++++++++++++++++++++++-- doc/devel/weekly.html | 45 ++++++++++++++++++++++++++++++++++++++++++++- diff --git a/.hgtags b/.hgtags index ef8f73ccd1123eb923a228f96eb3665819ad9a06..9845868d79fe4babe852a1fdeb384a3ee3c74d1f 100644 --- a/.hgtags +++ b/.hgtags @@ -85,7 +85,6 @@ d7322ae4d055a4cf3efaf842d0717a41acd85bac weekly.2011-09-21 32a5db19629897641b2d488de4d1b998942ef80e release.r60.2 3bdabf483805fbf0c7ef013fd09bfd6062b9d3f2 weekly.2011-10-06 c1702f36df0397c19fc333571a771666029aa37e release.r60.3 -c1702f36df0397c19fc333571a771666029aa37e release acaddf1cea75c059d19b20dbef35b20fb3f38954 release.r58.2 6d7136d74b656ba6e1194853a9486375005227ef weekly.2011-10-18 941b8015061a0f6480954821dd589c60dfe35ed1 weekly.2011-10-25 @@ -109,4 +108,3 @@ 96bd78e7d35e892113bdfa1bdc392d3a5f2e644b weekly.2012-02-22 f4470a54e6dbcdd52d8d404e12e4754adcd2c948 weekly.2012-03-04 3cdba7b0650c6c906ef3e782654f61701abd7dd2 weekly.2012-03-13 bce220d0377405146527ab9478867cbc572a6886 weekly.2012-03-22 -bce220d0377405146527ab9478867cbc572a6886 weekly diff --git a/doc/devel/release.html b/doc/devel/release.html index 984e674935035e394e9cf993774533f01c739cb9..65946e31f907da19cab8b3ad2bdae636fcc7087d 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -1,4 +1,6 @@ - +
This page summarizes the changes between official stable releases of Go. Between releases we issue less stable @@ -11,8 +13,27 @@
To update to a specific release, use:
hg pull -hg update release.rNN +hg update tag+ +
+Go 1 is a major release of Go that will be stable in the long term. +Read the Go 1 Release Notes for more information. +
+ ++It is intended that programs written for Go 1 will continue to compile and run +correctly, unchanged, under future versions of Go 1. +Read the Go 1 compatibility document for more +about the future of Go 1. +
+ +
+The go1 release corresponds to
+weekly.2012-03-27.
+
This page summarizes the changes between tagged weekly snapshots of Go. For full details, see the Mercurial change log.
@@ -12,6 +14,47 @@hg pull hg update weekly.YYYY-MM-DD ++ +
+* cmd/dist: fix detection of go1 version. +* cmd/go: add missing error check (thanks Evan Shaw), + allow underscores in tool name (thanks Shenghou Ma), + bug fixes, + copy tag_test.go from goinstall, + explain versions better, + respect $GOBIN always, + update for go1 tag format. +* cmd/godoc: canonicalize custom path redirects, + fix app engine version, + use virtual filesystem to implement -templates flag. +* codewalk/sharemem.xml: fix references to files. +* crypto/tls: don't select ECC ciphersuites with no mutual curve. +* doc: add JSON-RPC: a tale of interfaces article (thanks Francisco Souza), + describe the Windows MSI installer as experimental, + link to Go Project Dashboard from package list, + update wiki tutorial templates and template discussion, + and many minor fixes. +* exp/types: generalized GCImporter API. +* go/build: cgoEnabled is not known to cmd/dist anymore (thanks Shenghou Ma), + fix import check. +* godoc: make 'Overview' section collapsible. +* misc/dist: many fixes and tweaks. +* misc/emacs: fix indentation bug. +* misc/goplay: fix error on IE8 (thanks Yasuhiro Matsumoto). +* net: ignore ECONNABORTED from syscall.Accept (thanks Devon H. O'Dell). +* os: add missing byte to FileMode buffer (thanks Stefan Nilsson). +* path/filepath: convert drive letter to upper case in windows EvalSymlinks (thanks Alex Brainman), + correct comment in EvalSymlinks (thanks Alex Brainman), + use windows GetShortPathName api to force GetLongPathName to do its work (thanks Alex Brainman), + windows drive letter cannot be a digit (thanks Alex Brainman). +* run.bash: compile the codewalks. +* runtime: restore deadlock detection in the simplest case (thanks Rémy Oudompheng), + work around false negative in deadlock detection. +* text/template: fix typo in package comment. +* windows: installer fixes (thanks Joe Poirier).