diff --git a/doc/go1.13.html b/doc/go1.13.html index 97f2448c10..39c00150f6 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -15,13 +15,13 @@ Do not send CLs removing the interior tags from such phrases. main ul li { margin: 0.5em 0; } -

DRAFT RELEASE NOTES - Introduction to Go 1.13

+

Introduction to Go 1.13

- - Go 1.13 is not yet released. These are work-in-progress - release notes. Go 1.13 is expected to be released in September 2019. - + The latest Go release, version 1.13, arrives six months after Go 1.12. + Most of its changes are in the implementation of the toolchain, runtime, and libraries. + As always, the release maintains the Go 1 promise of compatibility. + We expect almost all Go programs to continue to compile and run as before.

@@ -122,7 +122,7 @@ Do not send CLs removing the interior tags from such phrases.

Android

- Go programs are now compatible with Android Q. + Go programs are now compatible with Android 10.

Darwin

@@ -139,7 +139,8 @@ Do not send CLs removing the interior tags from such phrases. As announced in the Go 1.12 release notes, Go 1.13 now requires FreeBSD 11.2 or later; support for previous versions has been discontinued. - FreeBSD 12.0 or later requires a kernel with the COMPAT_FREEBSD11 option set (this is the default). + FreeBSD 12.0 or later requires a kernel with the COMPAT_FREEBSD11 + option set (this is the default).

Illumos

@@ -781,7 +782,7 @@ godoc
net

- On Unix systems where use-vc is set in resolve.conf, TCP is used for DNS resolution. + On Unix systems where use-vc is set in resolv.conf, TCP is used for DNS resolution.

@@ -825,7 +826,8 @@ godoc

- When reusing HTTP/2, the Transport no longer performs unnecessary TLS handshakes. + Transport.MaxConnsPerHost now works + properly with HTTP/2.

@@ -872,7 +874,8 @@ godoc

- Transport now silently ignores a 408 "Request Timeout" response. + The Transport no longer logs errors when servers + gracefully shut down idle connections using a "408 Request Timeout" response.

@@ -997,9 +1000,10 @@ godoc
syscall/js

- TypedArrayOf has been replaced by + TypedArrayOf has been replaced by CopyBytesToGo and - CopyBytesToJS for copying bytes between a byte slice and a Uint8Array. + CopyBytesToJS for copying bytes + between a byte slice and a Uint8Array.