Skip to content

Commit dec1679

Browse files
committed
doc/1.13: remove draft note and make various fixes
Fixes golang#33954 Change-Id: Idfe71bf825adcd7cbf70cd139b3e779963394ff6 Reviewed-on: https://go-review.googlesource.com/c/go/+/192105 Run-TryBot: Andrew Bonventre <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Katie Hockman <[email protected]>
1 parent 060669a commit dec1679

1 file changed

Lines changed: 16 additions & 12 deletions

File tree

doc/go1.13.html

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
main ul li { margin: 0.5em 0; }
1616
</style>
1717

18-
<h2 id="introduction">DRAFT RELEASE NOTES - Introduction to Go 1.13</h2>
18+
<h2 id="introduction">Introduction to Go 1.13</h2>
1919

2020
<p>
21-
<strong>
22-
Go 1.13 is not yet released. These are work-in-progress
23-
release notes. Go 1.13 is expected to be released in September 2019.
24-
</strong>
21+
The latest Go release, version 1.13, arrives six months after <a href="go1.12">Go 1.12</a>.
22+
Most of its changes are in the implementation of the toolchain, runtime, and libraries.
23+
As always, the release maintains the Go 1 <a href="/doc/go1compat.html">promise of compatibility</a>.
24+
We expect almost all Go programs to continue to compile and run as before.
2525
</p>
2626

2727
<p>
@@ -122,7 +122,7 @@ <h3 id="aix">AIX</h3>
122122
<h3 id="android">Android</h3>
123123

124124
<p><!-- CL 170127 -->
125-
Go programs are now compatible with Android Q.
125+
Go programs are now compatible with Android 10.
126126
</p>
127127

128128
<h3 id="darwin">Darwin</h3>
@@ -139,7 +139,8 @@ <h3 id="freebsd">FreeBSD</h3>
139139
As <a href="go1.12#freebsd">announced</a> in the Go 1.12 release notes,
140140
Go 1.13 now requires FreeBSD 11.2 or later;
141141
support for previous versions has been discontinued.
142-
FreeBSD 12.0 or later requires a kernel with the COMPAT_FREEBSD11 option set (this is the default).
142+
FreeBSD 12.0 or later requires a kernel with the <code>COMPAT_FREEBSD11</code>
143+
option set (this is the default).
143144
</p>
144145

145146
<h3 id="illumos">Illumos</h3>
@@ -781,7 +782,7 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>
781782
<dl id="net"><dt><a href="/pkg/net/">net</a></dt>
782783
<dd>
783784
<p><!-- CL 156366 -->
784-
On Unix systems where <code>use-vc</code> is set in <code>resolve.conf</code>, TCP is used for DNS resolution.
785+
On Unix systems where <code>use-vc</code> is set in <code>resolv.conf</code>, TCP is used for DNS resolution.
785786
</p>
786787

787788
<p><!-- CL 170678 -->
@@ -825,7 +826,8 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>
825826
</p>
826827

827828
<p><!-- CL 140357 -->
828-
When reusing HTTP/2, the <a href="/pkg/net/http/#Transport"><code>Transport</code></a> no longer performs unnecessary TLS handshakes.
829+
<a href="/pkg/net/http/#Transport.MaxConnsPerHost"><code>Transport.MaxConnsPerHost</code></a> now works
830+
properly with HTTP/2.
829831
</p>
830832

831833
<p><!-- CL 154383 -->
@@ -872,7 +874,8 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>
872874
</p>
873875

874876
<p><!-- CL 179457 -->
875-
<a href="/pkg/net/http/#Transport"><code>Transport</code></a> now silently ignores a <code>408 "Request Timeout"</code> response.
877+
The <a href="/pkg/net/http/#Transport"><code>Transport</code></a> no longer logs errors when servers
878+
gracefully shut down idle connections using a <code>"408 Request Timeout"</code> response.
876879
</p>
877880

878881
</dl><!-- net/http -->
@@ -997,9 +1000,10 @@ <h3 id="minor_library_changes">Minor changes to the library</h3>
9971000
<dl id="syscall/js"><dt><a href="/pkg/syscall/js/">syscall/js</a></dt>
9981001
<dd>
9991002
<p><!-- CL 177537 -->
1000-
TypedArrayOf has been replaced by
1003+
<code>TypedArrayOf</code> has been replaced by
10011004
<a href="/pkg/syscall/js/#CopyBytesToGo"><code>CopyBytesToGo</code></a> and
1002-
<a href="/pkg/syscall/js/#CopyBytesToJS"><code>CopyBytesToJS</code></a> for copying bytes between a byte slice and a Uint8Array.
1005+
<a href="/pkg/syscall/js/#CopyBytesToJS"><code>CopyBytesToJS</code></a> for copying bytes
1006+
between a byte slice and a <code>Uint8Array</code>.
10031007
</p>
10041008

10051009
</dl><!-- syscall/js -->

0 commit comments

Comments
 (0)