aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2018-01-10 11:18:59 -0500
committerRuss Cox <rsc@golang.org>2018-01-10 19:53:26 +0000
commite7303a72dbd8dd965fbaa2f0cf74c5c0bb70ed8d (patch)
tree67e0e31c92da667fb61d7e94b8da9af480968190
parent6697aa58aef7f15c143f9af6878f1f4e406a6576 (diff)
downloadgo-e7303a72dbd8dd965fbaa2f0cf74c5c0bb70ed8d.tar.gz
go-e7303a72dbd8dd965fbaa2f0cf74c5c0bb70ed8d.zip
doc/go1.10: document that Go 1.11 will remove Windows XP support
Fixes #23380. Change-Id: Ia9a086eada21b5561f110833afcf93e542a04407 Reviewed-on: https://go-review.googlesource.com/87175 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Alex Brainman <alex.brainman@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
-rw-r--r--doc/go1.10.html25
1 files changed, 15 insertions, 10 deletions
diff --git a/doc/go1.10.html b/doc/go1.10.html
index b9ca02ceb5..04944ac19a 100644
--- a/doc/go1.10.html
+++ b/doc/go1.10.html
@@ -64,11 +64,6 @@ in particular <a href="#asm">new instructions in the assembler</a>
and improvements to the code generated by the compilers.
</p>
-<p id="darwin">
-Go 1.10 is the last release that will run on OS X 10.8 Mountain Lion or on OS X 10.9 Mavericks.
-Go 1.11 will require OS X 10.10 Yosemite or later.
-</p>
-
<p id="freebsd">
As <a href="go1.9#freebsd">announced in the Go 1.9 release notes</a>,
Go 1.10 now requires FreeBSD 10.3 or later;
@@ -81,11 +76,6 @@ Only <code>GOARCH</code> <code>amd64</code> and <code>386</code> have
been fixed. The <code>arm</code> port is still broken.
</p>
-<p id="openbsd">
-Go 1.10 is the last release that will run on OpenBSD 6.0.
-Go 1.11 will require OpenBSD 6.2.
-</p>
-
<p id="mips">
On 32-bit MIPS systems, the new environment variable settings
<code>GOMIPS=hardfloat</code> (the default) and
@@ -93,6 +83,21 @@ On 32-bit MIPS systems, the new environment variable settings
hardware instructions or software emulation for floating-point computations.
</p>
+<p id="openbsd">
+Go 1.10 is the last release that will run on OpenBSD 6.0.
+Go 1.11 will require OpenBSD 6.2.
+</p>
+
+<p id="darwin">
+Go 1.10 is the last release that will run on OS X 10.8 Mountain Lion or OS X 10.9 Mavericks.
+Go 1.11 will require OS X 10.10 Yosemite or later.
+</p>
+
+<p id="windows">
+Go 1.10 is the last release that will run on Windows XP or Windows Vista.
+Go 1.11 will require Windows 7 or later.
+</p>
+
<h2 id="tools">Tools</h2>
<h3 id="goroot">Default GOROOT &amp; GOTMPDIR</h3>