aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2013-05-24 15:06:49 +1000
committerAndrew Gerrand <adg@golang.org>2013-05-24 15:06:49 +1000
commitedbeec3ec6759fb54d33aabfb84390e195f0f6c8 (patch)
tree8c178bc979926c4a2784002d282642ac9f25fa93
parenta2bb28375a16386a8e12d7933d164c3196f6f1b4 (diff)
go.blog: add two most recent articles
R=golang-dev, r CC=golang-dev https://golang.org/cl/9716043
-rw-r--r--cmd/blog/rewrite.go2
-rw-r--r--content/advanced-go-concurrency-patterns.article14
-rw-r--r--content/go-11-is-released.article30
-rw-r--r--content/go-11-is-released_gopherbiplane5.jpgbin0 -> 15418 bytes
4 files changed, 46 insertions, 0 deletions
diff --git a/cmd/blog/rewrite.go b/cmd/blog/rewrite.go
index dfe8eb2..6ab9121 100644
--- a/cmd/blog/rewrite.go
+++ b/cmd/blog/rewrite.go
@@ -76,4 +76,6 @@ var urlMap = map[string]string{
"/2013/02/go-maps-in-action.html": "go-maps-in-action",
"/2013/03/two-recent-go-articles.html": "two-recent-go-articles",
"/2013/03/the-path-to-go-1.html": "the-path-to-go-1",
+ "/2013/05/go-11-is-released.html": "go-11-is-released.article",
+ "/2013/05/advanced-go-concurrency-patterns.html": "advanced-go-concurrency-patterns.article",
}
diff --git a/content/advanced-go-concurrency-patterns.article b/content/advanced-go-concurrency-patterns.article
new file mode 100644
index 0000000..5026f55
--- /dev/null
+++ b/content/advanced-go-concurrency-patterns.article
@@ -0,0 +1,14 @@
+Advanced Go Concurrency Patterns
+23 May 2013
+
+Andrew Gerrand
+
+* Introduction
+
+At Google I/O a year ago Rob Pike presented _[[http://talks.golang.org/2012/concurrency.slide][Go_Concurrency_Patterns]]_, an introduction to Go's concurrency model. Last week, at I/O 2013, Go team member Sameer Ajmani continued the story with _[[http://talks.golang.org/2013/advconc.slide][Advanced_Go_Concurrency_Patterns]]_, an in-depth look at a real concurrent programming problem. The talk shows how to detect and avoid deadlocks and race conditions, and demonstrates the implementation of deadlines, cancellation, and more. For those who want to take their Go programming to the next level, this is a must-see.
+
+.iframe http://www.youtube.com/embed/QDDwwePbDtw?rel=0 309 549
+
+The slides are [[http://talks.golang.org/2013/advconc.slide][available here]] (use the left and right arrows to navigate).
+
+The slides were produced with [[http://godoc.org/code.google.com/p/go.talks/present][the present tool]], and the runnable code snippets are powered by the [[http://play.golang.org/][Go Playground]]. The source code for this talk is in [[https://code.google.com/p/go/source/browse/?repo=talks#hg%2F2013%2Fadvconc][the go.talks sub-repository]].
diff --git a/content/go-11-is-released.article b/content/go-11-is-released.article
new file mode 100644
index 0000000..6f73fa7
--- /dev/null
+++ b/content/go-11-is-released.article
@@ -0,0 +1,30 @@
+Go 1.1 is released
+13 May 2013
+
+Andrew Gerrand
+
+* Introduction
+
+It is our great pleasure to announce the release of Go 1.1.
+
+.image go-11-is-released_gopherbiplane5.jpg
+
+In March last year we released Go 1.0, and since then we have released three minor "point releases". The point releases were made to fix only critical issues, so the Go 1.0.3 you use today is still, in essence, the Go 1.0 we released in March 2012.
+
+Go 1.1 includes many improvements over 1.0.
+
+The most significant improvements are performance-related. We have made optimizations in the compiler and linker, garbage collector, goroutine scheduler, map implementation, and parts of the standard library. It is likely that your Go code will run noticeably faster when built with Go 1.1.
+
+There are some minor changes to the language itself, two of which are worth singling out here: the [[http://golang.org/doc/go1.1#return][changes to return requirements]] will lead to more succinct and correct programs, and the introduction of [[http://golang.org/doc/go1.1#method_values][method values]] provides an expressive way to bind a method to its receiver as a function value.
+
+Concurrent programming is safer in Go 1.1 with the addition of a race detector for finding memory synchronization errors in your programs. We will discuss the race detector more in an upcoming article, but for now [[http://golang.org/doc/articles/race_detector.html][the manual]] is a great place to get started.
+
+The tools and standard library have been improved and expanded. You can read the full story in the [[http://golang.org/doc/go1.1][release notes]].
+
+As per our [[http://golang.org/doc/go1compat.html][compatibility guidelines]], Go 1.1 remains compatible with Go 1.0 and we recommend all Go users upgrade to the new release.
+
+All this would not have been possible without the help of our contributors from the open source community. Since Go 1.0, the core received more than 2600 commits from 161 people outside Google. Thank you everyone for your time and effort. In particular, we would like to thank Shenghou Ma, Rémy Oudompheng, Dave Cheney, Mikio Hara, Alex Brainman, Jan Ziak, and Daniel Morsing for their outstanding contributions.
+
+To grab the new release, follow the usual [[http://golang.org/doc/install][installation instructions]]. Happy hacking!
+
+_Thanks_to_Renée_French_for_the_gopher!_
diff --git a/content/go-11-is-released_gopherbiplane5.jpg b/content/go-11-is-released_gopherbiplane5.jpg
new file mode 100644
index 0000000..9b56e23
--- /dev/null
+++ b/content/go-11-is-released_gopherbiplane5.jpg
Binary files differ