doc/devel/release.html | 13 ++++++++++++- diff --git a/doc/devel/release.html b/doc/devel/release.html index a182b24451510976e7f0832e55b1cd97f8da8aac..c7691c7668c83f0cda696ac2b99f3542b0eb4234 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -8,7 +8,18 @@
-Changes in this release:
+This release includes changes to the reflect and path packages.
+Code that uses reflect or path may need to be updated.
+
+The reflect package's Value.Addr method has been renamed to Value.UnsafeAddr.
+Code that uses the Addr method will have to call UnsafeAddr instead.
+
+The path package has been split into two packages: path and path/filepath.
+Package path manipulates slash-separated paths, regardless of operating system.
+Package filepath implements the local operating system's native file paths.
+OS-specific functioanlity in pacakge path, such as Walk, moved to filepath.
+
+Other changes:
* build: fixes and simplifications (thanks Dave Cheney),
move $GOBIN ahead of /bin, /usr/bin in build $PATH.
* bzip2: speed up decompression.