aboutsummaryrefslogtreecommitdiff
path: root/content/go1.3.article
diff options
context:
space:
mode:
authorAgniva De Sarker <agnivade@yahoo.co.in>2018-04-14 00:23:09 +0530
committerAndrew Bonventre <andybons@golang.org>2018-04-13 19:50:50 +0000
commit7edc962a942e4a9d5e06dde79299f7fc5605f000 (patch)
treed05d3cbb132e60ace21a28184833cc4b31ef59c3 /content/go1.3.article
parentefc7460c787535c46feadda9f7c395f16a615306 (diff)
content: update all golang.org links to https
Ran sed -i 's/\[\[http:\/\/golang.org/\[\[https:\/\/golang.org/g' *.article Change-Id: I88acc5104e1a3fc5e9a1cf11b600b657202d8997 Reviewed-on: https://go-review.googlesource.com/106955 Run-TryBot: Andrew Bonventre <andybons@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Andrew Bonventre <andybons@golang.org>
Diffstat (limited to 'content/go1.3.article')
-rw-r--r--content/go1.3.article24
1 files changed, 12 insertions, 12 deletions
diff --git a/content/go1.3.article b/content/go1.3.article
index 17dc7b7..b02c3ad 100644
--- a/content/go1.3.article
+++ b/content/go1.3.article
@@ -5,13 +5,13 @@ Andrew Gerrand
* Go 1.3 is released
-Today we are happy to announce the release of [[http://golang.org/doc/go1.3][Go 1.3]].
+Today we are happy to announce the release of [[https://golang.org/doc/go1.3][Go 1.3]].
This release comes six months after our last major release and provides better
performance, improved tools, support for running Go in new environments, and more.
All Go users should upgrade to Go 1.3.
-You can grab the release from our [[http://golang.org/dl/][downloads page]] and
+You can grab the release from our [[https://golang.org/dl/][downloads page]] and
find the full list of improvements and fixes in the
-[[http://golang.org/doc/go1.3][release notes]].
+[[https://golang.org/doc/go1.3][release notes]].
What follows are some highlights.
[[http://godoc.org/code.google.com/p/go.tools/cmd/godoc][Godoc]],
@@ -19,39 +19,39 @@ the Go documentation server, now performs static analysis.
When enabled with the -analysis flag, analysis results are presented
in both the source and package documentation views, making it easier
than ever to navigate and understand Go programs.
-See [[http://golang.org/lib/godoc/analysis/help.html][the documentation]] for the details.
+See [[https://golang.org/lib/godoc/analysis/help.html][the documentation]] for the details.
The gc toolchain now supports the Native Client (NaCl) execution sandbox on the
32- and 64-bit Intel architectures.
This permits the safe execution of untrusted code, useful in environments such as the
[[http://blog.golang.org/playground][Playground]].
-To set up NaCl on your system see the [[http://golang.org/wiki/NativeClient][NativeClient wiki page]].
+To set up NaCl on your system see the [[https://golang.org/wiki/NativeClient][NativeClient wiki page]].
Also included in this release is experimental support for the DragonFly BSD,
Plan 9, and Solaris operating systems. To use Go on these systems you must
-[[http://golang.org/doc/install/source][install from source]].
+[[https://golang.org/doc/install/source][install from source]].
Changes to the runtime have improved the
-[[http://golang.org/doc/go1.3#performance][performance]] of Go binaries,
+[[https://golang.org/doc/go1.3#performance][performance]] of Go binaries,
with an improved garbage collector, a new
-[[http://golang.org/s/contigstacks]["contiguous" goroutine stack management strategy]],
+[[https://golang.org/s/contigstacks]["contiguous" goroutine stack management strategy]],
a faster race detector, and improvements to the regular expression engine.
-As part of the general [[http://golang.org/s/go13linker][overhaul]] of the Go
+As part of the general [[https://golang.org/s/go13linker][overhaul]] of the Go
linker, the compilers and linkers have been refactored. The instruction
selection phase that was part of the linker has been moved to the compiler.
This can speed up incremental builds for large projects.
-The [[http://golang.org/doc/go1.3#garbage_collector][garbage collector]] is now
+The [[https://golang.org/doc/go1.3#garbage_collector][garbage collector]] is now
precise when examining stacks (collection of the heap has been precise since Go
1.1), meaning that a non-pointer value such as an integer will never be
mistaken for a pointer and prevent unused memory from being reclaimed. This
change affects code that uses package unsafe; if you have unsafe code you
-should read the [[http://golang.org/doc/go1.3#garbage_collector][release notes]]
+should read the [[https://golang.org/doc/go1.3#garbage_collector][release notes]]
carefully to see if your code needs updating.
We would like to thank the many people who contributed to this release;
it would not have been possible without your help.
So, what are you waiting for?
-Head on over to the [[http://golang.org/dl/][downloads page]] and start hacking.
+Head on over to the [[https://golang.org/dl/][downloads page]] and start hacking.