diff --git a/.hgtags b/.hgtags index 6dc5aeb37b..beed920f7d 100644 --- a/.hgtags +++ b/.hgtags @@ -47,4 +47,3 @@ f7e692dc29b02fba8e5d59b967880a347b53607c release.2010-12-02 8eeee945e358f19405e81792db0e16a1cad14bc0 release.2011-01-06 514c7ba501a1dd74d69ea2d0a2b4116802ada2b5 release.2011-01-12 72f9cb714f08b98c6a65ab2f2256fad6bb16967a release.2011-01-19 -72f9cb714f08b98c6a65ab2f2256fad6bb16967a release diff --git a/doc/devel/release.html b/doc/devel/release.html index 6bba134e97..e1c0963eac 100644 --- a/doc/devel/release.html +++ b/doc/devel/release.html @@ -5,6 +5,20 @@
This page summarizes the changes between tagged releases of Go. For full details, see the Mercurial change log.
++This release removes the float and complex types from the language. + +The default type for a floating point literal is now float64, and +the default type for a complex literal is now complex128. + +Existing code that uses float or complex must be rewritten to +use explicitly sized types. + +The two-argument constructor cmplx is now spelled complex. ++