Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
7317c10f
Commit
7317c10f
authored
Jul 15, 2010
by
Andrew Gerrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
release.2010-07-14
R=rsc CC=golang-dev
https://golang.org/cl/1844041
parent
9b64fef7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
1 deletion
+37
-1
.hgtags
.hgtags
+0
-1
release.html
doc/devel/release.html
+37
-0
No files found.
.hgtags
View file @
7317c10f
...
@@ -23,4 +23,3 @@ a85ad0a640154b5d33626ad8ea15ed17e3828178 release.2010-05-27
...
@@ -23,4 +23,3 @@ a85ad0a640154b5d33626ad8ea15ed17e3828178 release.2010-05-27
f776656df34c009f2aad142bf7b34a778404acd1 release.2010-06-09
f776656df34c009f2aad142bf7b34a778404acd1 release.2010-06-09
113ec27f29f18825444f6f8a3cdc156c1df28e87 release.2010-06-21
113ec27f29f18825444f6f8a3cdc156c1df28e87 release.2010-06-21
b761e0299e9bf66298778cf170b0f64216e3cf7d release.2010-07-01
b761e0299e9bf66298778cf170b0f64216e3cf7d release.2010-07-01
b761e0299e9bf66298778cf170b0f64216e3cf7d release
doc/devel/release.html
View file @
7317c10f
...
@@ -5,6 +5,43 @@
...
@@ -5,6 +5,43 @@
<p>
This page summarizes the changes between tagged releases of Go.
<p>
This page summarizes the changes between tagged releases of Go.
For full details, see the
<a
href=
"http://code.google.com/p/go/source/list"
>
Mercurial change log
</a>
.
</p>
For full details, see the
<a
href=
"http://code.google.com/p/go/source/list"
>
Mercurial change log
</a>
.
</p>
<h3
id=
"2010-07-14"
>
2010-07-14
</h3>
<pre>
This release includes a package change. In container/vector, the Iter method
has been removed from the Vector, IntVector, and StringVector types. Also, the
Data method has been renamed to Copy to better express its actual behavior.
Now that Vector is just a slice, any for loops ranging over v.Iter() or
v.Data() can be changed to range over v instead.
Other changes:
* big: Improvements to Rat.SetString (thanks Evan Shaw),
add sign, abs, Rat.IsInt.
* cgo: various bug fixes.
* codereview: Fix for Mercurial >= 1.6 (thanks Evan Shaw).
* crypto/rand: add Windows implementation (thanks Peter Mundy).
* crypto/tls: make HTTPS servers easier,
add client OCSP stapling support.
* exp/eval: converted from bignum to big (thanks Evan Shaw).
* gc: implement new len spec, range bug fix, optimization.
* go/parser: require that '...' parameters are followed by a type.
* http: fix ParseURL to handle //relative_path properly.
* io: fix SectionReader Seek to seek backwards (thanks Peter Mundy).
* json: Add HTMLEscape (thanks Micah Stetson).
* ld: bug fixes.
* math: amd64 version of log (thanks Charles L. Dorian).
* mime/multipart: new package to parse multipart MIME messages
and HTTP multipart/form-data support.
* os: use TempFile with default TempDir for test files (thanks Peter Mundy).
* runtime/tiny: add docs for additional VMs, fix build (thanks Markus Duft).
* runtime: better error for send/recv on nil channel.
* spec: clarification of channel close(),
lock down some details about channels and select,
restrict when len(x) is constant,
specify len/cap for nil slices, maps, and channels.
* windows: append .exe to binary names (thanks Joe Poirier).
</pre>
<h3
id=
"2010-07-01"
>
2010-07-01
</h3>
<h3
id=
"2010-07-01"
>
2010-07-01
</h3>
<pre>
<pre>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment