diff --git a/doc/go1.1.html b/doc/go1.1.html index ae0a099395373a..9312e69f94d8c2 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -9,6 +9,7 @@

Introduction to Go 1.1

TODO - overview - link back to Go 1 and also Go 1 Compatibility docs. + - links through body of text

Changes to the language

@@ -33,7 +34,8 @@

Integer division by zero

Changes to the implementations and tools

-TODO: more +
  • TODO: more
  • +
  • TODO: unicode: surrogate halves in compiler, libraries, runtime
  • Command-line flag parsing

    @@ -59,7 +61,7 @@

    Size of int on 64-bit platforms

    Updating: Most programs will be unaffected by this change. Because Go does not allow implicit conversions between distinct -numeric types, +numeric types, no programs will stop compiling due to this change. However, programs that contain implicit assumptions that int is only 32 bits may change behavior. @@ -129,8 +131,27 @@

    Changes to go fix

    to convert the code to Go 1.0 first.

    +

    Performance

    + +

    +TODO introduction +

    + + +

    Changes to the standard library

    +

    bufio.Scanner

    + +

    +TODO +

    +

    debug/elf

    Previous versions of the debug/elf package intentionally skipped over the first @@ -141,13 +162,6 @@

    debug/elf

    adjusted to account for the additional symbol and the change in symbol offsets.

    -

    html/template

    - -

    -Templates using the undocumented and only partially implemented -"noescape" feature will break: that feature was removed. -

    -

    net

    @@ -168,6 +182,20 @@

    net

    the UnixConn.

    +

    reflect

    + +

    +TODO: +reflect: Select, ChanOf, MakeFunc, MapOf, SliceOf, Convert, Type.ConvertibleTo +

    + +

    runtime

    + +

    +TODO: +runtime: BlockProfile +

    +

    time

    On FreeBSD, Linux, NetBSD, OS X and OpenBSD, previous versions of the time package @@ -182,6 +210,10 @@

    time

    external storage.

    +

    TODO: +time: ParseInLocation, Timer.Reset, Time.YearDay +

    +

    Exp and old subtrees moved to go.exp subrepo

    @@ -204,4 +236,217 @@

    Exp and old subtrees moved to go.exp subrepo

    import "code.google.com/p/go.exp/ssa" -

    TODO

    +

    Minor changes to the library

    + +

    +The following list summarizes a number of minor changes to the library, mostly additions. +See the relevant package documentation for more information about each change. +

    + +