blob: 1db0d763bf830775ac70c3406f41b1a4e5d83344 [file] [log] [blame]
Russ Cox30fde1b2013-05-24 16:34:50 -04001This file collects notes about what has changed since Go 1.1
2and should be mentioned in the Go 1.2 release notes.
3During the Go 1.2 release process it will be necessary to convert
4it to HTML, similar to go1.1.html, but for now it is a text file,
5to make the process of keeping it up-to-date more lightweight.
6
7Please keep the descriptions to a single line, starting with the
8package or cmd/xxx directory name, and ending in a CL number.
9Please keep the list sorted (as in sort.Strings of the lines).
10
Shenghou Ma5d081792013-05-30 03:03:52 +080011cmd/5a: removed support for R9/R10 (use m/g instead) (CL 9840043).
Shenghou Ma1a145cd2013-06-03 03:09:47 +080012cmd/cgo, cmd/go: support including C++ code with cgo (CL 8248043).
Rob Pike4f2278d2013-06-27 09:20:02 -070013cmd/go: test coverage (CL 10413044).
Shenghou Ma5d081792013-05-30 03:03:52 +080014
Rob Pike4f2278d2013-06-27 09:20:02 -070015crypto/md5: Sum function to simplify hashing (CL10624044).
16crypto/sha1: Sum function to simplify hashing (CL 10571043).
17crypto/sha256: Sum256 and Sum224 functions to simplify hashing (CL 10629043).
18crypto/sha512: Sum512 and Sum384 functions to simplify hashing (CL 10630043).
Adam Langley2112fed2013-06-04 20:02:22 -040019crypto/tls: add support for TLS 1.1. (CL 7872043).
Rob Pike7472ce02013-05-24 15:49:26 -070020fmt: indexed access to arguments in Printf etc. (CL 9680043).
Shenghou Ma1a145cd2013-06-03 03:09:47 +080021go/build: support including C++ code with cgo (CL 8248043).
Russ Cox30fde1b2013-05-24 16:34:50 -040022io: Copy prioritizes WriterTo over ReaderFrom (CL 9462044).
Shenghou Ma06f55f52013-06-11 02:55:16 +080023net: new build tag netgo for building a pure Go net package (CL 7100050).
Rob Pike85fc2f72013-05-30 12:41:20 -040024testing: AllocsPerRun is now quantized to an integer (the type is still float64) (CL 9837049).