1
0
mirror of https://github.com/golang/go synced 2024-11-23 02:30:02 -07:00

doc/devel/release: discuss StartProcess in release notes

R=rsc
CC=golang-dev
https://golang.org/cl/4172051
This commit is contained in:
Andrew Gerrand 2011-02-16 21:20:50 -05:00
parent 946cdf82bc
commit 6ccc96eea9

View File

@ -8,12 +8,16 @@ For full details, see the <a href="http://code.google.com/p/go/source/list">Merc
<h3 id="2011-02-15">2011-02-15</h3>
<pre>
This release includes changes to the io and template packages.
This release includes changes to the io, os, and template packages.
You may need to update your code.
The io.ReadByter and io.ReadRuner interface types have been renamed to
io.ByteReader and io.RuneReader respectively.
The os package's ForkExec function has been superseded by the new StartProcess
function and an API built around the Process type:
http://golang.org/pkg/os/#Process
The order of arguments to template.Execute has been reversed to be consistent
the notion of "destination first", as with io.Copy, fmt.Fprint, and others.