Russ Cox | 30fde1b | 2013-05-24 16:34:50 -0400 | [diff] [blame] | 1 | This file collects notes about what has changed since Go 1.1 |
| 2 | and should be mentioned in the Go 1.2 release notes. |
| 3 | During the Go 1.2 release process it will be necessary to convert |
| 4 | it to HTML, similar to go1.1.html, but for now it is a text file, |
| 5 | to make the process of keeping it up-to-date more lightweight. |
| 6 | |
| 7 | Please keep the descriptions to a single line, starting with the |
| 8 | package or cmd/xxx directory name, and ending in a CL number. |
| 9 | Please keep the list sorted (as in sort.Strings of the lines). |
| 10 | |
Shenghou Ma | 5d08179 | 2013-05-30 03:03:52 +0800 | [diff] [blame] | 11 | cmd/5a: removed support for R9/R10 (use m/g instead) (CL 9840043). |
Shenghou Ma | 1a145cd | 2013-06-03 03:09:47 +0800 | [diff] [blame] | 12 | cmd/cgo, cmd/go: support including C++ code with cgo (CL 8248043). |
Rob Pike | 4f2278d | 2013-06-27 09:20:02 -0700 | [diff] [blame] | 13 | cmd/go: test coverage (CL 10413044). |
Shenghou Ma | 5d08179 | 2013-05-30 03:03:52 +0800 | [diff] [blame] | 14 | |
Rob Pike | 4f2278d | 2013-06-27 09:20:02 -0700 | [diff] [blame] | 15 | crypto/md5: Sum function to simplify hashing (CL10624044). |
| 16 | crypto/sha1: Sum function to simplify hashing (CL 10571043). |
| 17 | crypto/sha256: Sum256 and Sum224 functions to simplify hashing (CL 10629043). |
| 18 | crypto/sha512: Sum512 and Sum384 functions to simplify hashing (CL 10630043). |
Adam Langley | 2112fed | 2013-06-04 20:02:22 -0400 | [diff] [blame] | 19 | crypto/tls: add support for TLS 1.1. (CL 7872043). |
Rob Pike | 7472ce0 | 2013-05-24 15:49:26 -0700 | [diff] [blame] | 20 | fmt: indexed access to arguments in Printf etc. (CL 9680043). |
Shenghou Ma | 1a145cd | 2013-06-03 03:09:47 +0800 | [diff] [blame] | 21 | go/build: support including C++ code with cgo (CL 8248043). |
Russ Cox | 30fde1b | 2013-05-24 16:34:50 -0400 | [diff] [blame] | 22 | io: Copy prioritizes WriterTo over ReaderFrom (CL 9462044). |
Shenghou Ma | 06f55f5 | 2013-06-11 02:55:16 +0800 | [diff] [blame] | 23 | net: new build tag netgo for building a pure Go net package (CL 7100050). |
Rob Pike | 85fc2f7 | 2013-05-30 12:41:20 -0400 | [diff] [blame] | 24 | testing: AllocsPerRun is now quantized to an integer (the type is still float64) (CL 9837049). |