blob: 80a5248b3aec6af50cf985cc408eeabc6246dcbe [file] [log] [blame] [view]
Andrew Gerrand5bc444d2014-12-10 11:35:11 +11001# Go 1.1
2 * [net/http/cookiejar](https://groups.google.com/d/msg/golang-dev/ygDB3nbir00/rouknDcuyakJ)
3 * [Function Calls](https://docs.google.com/document/d/1bMwCey-gmqZVTpRax-ESeVuZGmjwbocYs1iHplK-cjo/pub)
4
5# Go 1.2
6
7 * [xml.Marshaler and Umarshaler](http://golang.org/s/go12xml)
8 * [encoding.TextMarshaler and Unmarshaler](http://golang.org/s/go12encoding)
9 * [Runtime Symbol Table Format](http://golang.org/s/go12symtab)
10 * [Field Selectors and Nil Checks](http://golang.org/s/go12nil)
minuxe3ef7cf2014-12-10 23:33:59 -080011 * [```x[i:j:k]``` Slice Syntax](http://golang.org/s/go12slice)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110012 * [Preemptive Scheduler](https://docs.google.com/document/d/1ETuA2IOmnaQ4j81AtTGT40Y4_Jr6_IDASEKg0t0dBR8/edit?usp=sharing)
13
14# Go 1.3
15
16 * [Contiguous Stacks](https://docs.google.com/document/d/1wAaf1rYoM4S4gtnPh0zOlGzWtrZFQ5suE8qr2sD8uWQ/pub)
17 * [Go 1.3 Linker Overhaul](https://golang.org/s/go13linker)
18 * [Go 1.3 Native Client Support](https://docs.google.com/document/d/1oA4rs0pfk5NzUyA0YX6QsUEErNIMXawoscw9t0NHafo/pub)
19
20# Go 1.4
21
22 * [Go channels on steroids](http://golang.org/s/go13chan)
23 * [Go 1.4 Internal Packages](http://golang.org/s/go14internal)
24 * [Go 1.4 src/pkg src](http://golang.org/s/go14nopkg)
25 * [Go 1.4 Custom Import Path Checking](http://golang.org/s/go14customimport)
26 * [Go generate: A Proposal](http://golang.org/s/go1.4-generate)
27 * [The syscall package](https://docs.google.com/a/golang.org/document/d/1QXzI9I1pOfZPujQzxhyRy6EeHYTQitKKjHfpq0zpxZs)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110028 * [Go 1.4 Subrepo Renaming](http://golang.org/s/go14subrepo)
minuxe3ef7cf2014-12-10 23:33:59 -080029 * [Go 1.4 Native Client Support for ARM](http://golang.org/s/go14naclarm)
nathany0b2ee652015-01-03 12:49:36 -080030 * [dev.cc branch plan](http://golang.org/s/dev.cc)
nathanycd9531b2015-01-03 12:48:05 -080031
32# Go 1.5
33
Nathan Youngman21bd4412015-01-08 19:19:12 -070034 * [Go 1.5 Bootstrap Plan](https://golang.org/s/go15bootstrap)
nathanycd9531b2015-01-03 12:48:05 -080035 * [Go Compiler Overhaul](http://golang.org/s/go13compiler)
36 * [Go Execution Tracer](http://goo.gl/eXjfeS)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110037
38# Future Proposals
39
Nathan Youngmanf16b7822015-03-02 11:32:10 -070040 * [New SSA Backend for the Go Compiler](https://docs.google.com/document/d/1szwabPJJc4J-igUZU4ZKprOrNRNJug2JPD8OYi3i1K0/edit?usp=sharing_eid)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110041 * [Go 1.4+ Garbage Collection (GC) Plan and Roadmap](http://golang.org/s/go14gc)
nathany62aff802014-12-10 23:36:23 -080042 * [Better GC and Memory Allocator for Go](https://docs.google.com/document/d/1HCPu3WKyCX3ZRYxmIMKTk0Ik1dePxKW1p02k3uhcft4/view)
43 * [Groups Discussion](https://groups.google.com/d/topic/golang-dev/pwUh0BVFpY0/discussion)
44 * [Precise GC Stack Roots](https://docs.google.com/document/d/13v_u3UrN2pgUtPnH4y-qfmlXwEEryikFu0SQiwk35SA/pub)
45 * [Go 1.3 cmd/go and os/fsnotify](http://golang.org/s/go13fsnotify)
46 * [Go 1.5 os/fsnotify API](http://goo.gl/MrYxyA)
47 * [Simple Multi-Dimensional Slices (Tables)](https://docs.google.com/document/d/1eHm7KqfKP9_s4vR1zToxq-FBazdUQ9ZYi-YhcEtdfR0/edit)
48 * [Go execution modes](https://docs.google.com/a/golang.org/document/d/1nr-TQHw_er6GOQRsF6T43GGhFDelrAP0NqSS_00RgZQ/edit)
Michael Hudson-Doyle52745b52015-03-06 09:18:04 +130049 * [Building and distributing Go packages as shared libraries](https://docs.google.com/a/canonical.com/document/d/1PxhXNhsdqwBjteW7poqv4Vf3PhtTmYuQKkOk_JNWeh0/edit#heading=h.9hyi51rp3owq)
nathany62aff802014-12-10 23:36:23 -080050 * [NUMA-aware scheduler for Go](https://docs.google.com/document/d/1d3iI2QWURgDIsSR6G2275vMeQ_X7w-qxM2Vp7iGwwuM/pub)
51 * [Go 1.5+ "External" Packages](https://docs.google.com/document/d/1CJnU6ZKvsp21B0lQwbJlKFt8Zz4EWscaCRy_EwK8ja8)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110052
minuxe3ef7cf2014-12-10 23:33:59 -080053# Other Tools
54 * [Go Oracle](https://docs.google.com/document/d/1WmMHBUjQiuy15JfEnT8YBROQmEv-7K6bV-Y_K53oi5Y)
55 * [Binding Go and Java](http://golang.org/s/gobind)
56 * [Go Builder Plan](http://golang.org/s/builderplan)
Satish Puranam11e56072015-02-06 14:25:41 -050057 * [gomobile a tool for building apps](https://docs.google.com/document/d/1cePOQ35PNEb_QqxnPAmBv0cEnAm7AQSGuz9wVeJ-lBs/edit)
Andrew Gerrand5bc444d2014-12-10 11:35:11 +110058
minuxe3ef7cf2014-12-10 23:33:59 -080059# Rejected Proposals
minux1433bd42014-12-10 23:38:46 -080060 * [Read-only Slices](https://docs.google.com/a/golang.org/document/d/1UKu_do3FRvfeN5Bb1RxLohV-zBOJWTzX0E8ZU1bkqX0/edit#heading=h.2wzvdd6vdi83), [Evaluation of read-only slices](https://docs.google.com/document/d/1-NzIYu0qnnsshMBpMPmuO21qd8unlimHgKjRD9qwp2A/edit) ([rejected](https://groups.google.com/d/msg/golang-dev/Y7j4B2r_eDw/Rkq-OtEsEBAJ))
61 * [Go 1.4: unsafe.Pointer arithmetic](https://docs.google.com/a/dempsky.org/document/d/1yyCMzE4YPfsXvnZNjhszaYNqavxHhvbY-OWPqdzZK30/pub)