diff --git a/doc/Makefile b/doc/Makefile index 4d1f4ee0647..4e8ba08c175 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -8,12 +8,9 @@ TARG=tmpltohtml GOFILES=\ tmpltohtml.go\ -all: tmpltohtml go_tutorial.html effective_go.html +all: tmpltohtml go_tutorial.html effective_go.html go1.html -go_tutorial.html: go_tutorial.tmpl tmpltohtml - ./makehtml go_tutorial.tmpl - -effective_go.html: effective_go.tmpl tmpltohtml - ./makehtml effective_go.tmpl +%.html: %.tmpl tmpltohtml + ./makehtml $*.tmpl include ../src/Make.cmd diff --git a/doc/go1.html b/doc/go1.html new file mode 100644 index 00000000000..507c96fcd29 --- /dev/null +++ b/doc/go1.html @@ -0,0 +1,81 @@ + + +
+For a full explanation of the motivation and design of Go 1, see XXX. +Here follows a summary. +
+ ++Go 1 is intended to be a stable language and core library set that will form a reliable foundation for people and organizations that want to make a long-term commitment to developing in the Go programming language. Go will continue to develop, but in a way that guarantees code written to the Go 1 specification will continue to work. For instance, Go 1 will be a supported platform on Google App Engine for the next few years. Incompatible changes to the environment, should they arise, will be done in a distinct version. +
+ +
+This document describes the changes in the language and libraries in Go 1, relative to the previous release, r60 (at the time of writing, tagged as r60.3). It also explains how to update code at r60 to compile and run under Go 1. Finally, it outlines the new go
command for building Go programs and the new binary release process being introduced. Most of these topics have more thorough presentations elsewhere; such documents are linked below.
+
+
+For a full explanation of the motivation and design of Go 1, see XXX. +Here follows a summary. +
+ ++Go 1 is intended to be a stable language and core library set that will form a reliable foundation for people and organizations that want to make a long-term commitment to developing in the Go programming language. Go will continue to develop, but in a way that guarantees code written to the Go 1 specification will continue to work. For instance, Go 1 will be a supported platform on Google App Engine for the next few years. Incompatible changes to the environment, should they arise, will be done in a distinct version. +
+ +
+This document describes the changes in the language and libraries in Go 1, relative to the previous release, r60 (at the time of writing, tagged as r60.3). It also explains how to update code at r60 to compile and run under Go 1. Finally, it outlines the new go
command for building Go programs and the new binary release process being introduced. Most of these topics have more thorough presentations elsewhere; such documents are linked below.
+
+