aboutsummaryrefslogtreecommitdiff
path: root/content/go1.11.article
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2020-03-09 22:11:04 -0400
committerRuss Cox <rsc@golang.org>2020-03-11 14:10:08 +0000
commit482079d678d84e207dd9ae63266c4bd4e653886b (patch)
tree62aa3b630bbe982904f5495fe2cc53d60a87c92d /content/go1.11.article
parent0b4fcd39865e575704b5928c9a8f1cd21e18e8b2 (diff)
content: wrap long lines using new program wrap.go
Wrapping long lines will make diffs easier to read for the eventual conversion to Markdown. For golang/go#33955. Change-Id: Ibcc1b5a84ccc9144b5fcdc9266f2da3e2cf3c5a3 Reviewed-on: https://go-review.googlesource.com/c/blog/+/222839 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'content/go1.11.article')
1 files changed, 13 insertions, 5 deletions
diff --git a/content/go1.11.article b/content/go1.11.article
index 75bc400..558d7cf 100644
--- a/content/go1.11.article
+++ b/content/go1.11.article
@@ -11,17 +11,25 @@ Who says releasing on Friday is a bad idea?
Today the Go team is happy to announce the release of Go 1.11.
You can get it from the [[https://golang.org/dl/][download page]].
-There are many changes and improvements to the toolchain, runtime, and libraries, but two features stand out as being especially exciting: modules and WebAssembly support.
+There are many changes and improvements to the toolchain,
+runtime, and libraries, but two features stand out as being especially exciting:
+modules and WebAssembly support.
-This release adds preliminary support for a [[https://golang.org/doc/go1.11#modules][new concept called “modules,”]] an alternative to GOPATH with integrated support for versioning and package distribution.
-Module support is considered experimental, and there are still a few rough edges to smooth out, so please make liberal use of the [[https://golang.org/issue/new][issue tracker]].
+This release adds preliminary support for a [[https://golang.org/doc/go1.11#modules][new concept called “modules,”]]
+an alternative to GOPATH with integrated support for versioning and package distribution.
+Module support is considered experimental,
+and there are still a few rough edges to smooth out,
+so please make liberal use of the [[https://golang.org/issue/new][issue tracker]].
Go 1.11 also adds an experimental port to [[https://golang.org/doc/go1.11#wasm][WebAssembly]] (`js/wasm`).
This allows programmers to compile Go programs to a binary format compatible with four major web browsers.
-You can read more about WebAssembly (abbreviated “Wasm”) at [[https://webassembly.org/][webassembly.org]] and see [[https://golang.org/wiki/WebAssembly][this wiki page]] on how to get started with using Wasm with Go.
+You can read more about WebAssembly (abbreviated “Wasm”) at [[https://webassembly.org/][webassembly.org]]
+and see [[https://golang.org/wiki/WebAssembly][this wiki page]] on how to
+get started with using Wasm with Go.
Special thanks to [[https://github.com/neelance][Richard Musiol]] for contributing the WebAssembly port!
-We also want to thank everyone who contributed to this release by writing code, filing bugs, providing feedback, and/or testing the betas and release candidates.
+We also want to thank everyone who contributed to this release by writing code,
+filing bugs, providing feedback, and/or testing the betas and release candidates.
Your contributions and diligence helped to ensure that Go 1.11 is as bug-free as possible.
That said, if you do notice any problems, please [[https://golang.org/issues/new][file an issue]].