diff --git a/README.rst b/README.rst index 5f2cce23ef..97fef4f3a1 100644 --- a/README.rst +++ b/README.rst @@ -44,6 +44,9 @@ Mailing list: `bazel-go-discuss`_ Announcements ------------- +April 16, 2018 + Release `0.11.0 `_ + is now available. April 4, 2018 Release `0.10.3 `_ is now available. Release 0.11.0 is now expected around April 16, but you can @@ -51,10 +54,6 @@ April 4, 2018 March 29, 2018 Release `0.10.2 `_ is now available. -March 23, 2018 - Gazelle `0.10.1 - `_ is now - available. .. contents:: @@ -100,7 +99,7 @@ They currently do not support (in order of importance): * C/C++ interoperation except cgo (swig etc.) * coverage -:Note: The latest version of these rules (0.10.3) requires Bazel ≥ 0.10.0 to work. +:Note: The latest version of these rules (0.11.0) requires Bazel ≥ 0.10.0 to work. The ``master`` branch is only guaranteed to work with the latest version of Bazel. @@ -118,8 +117,8 @@ Setup http_archive( name = "io_bazel_rules_go", - url = "https://github.com/bazelbuild/rules_go/releases/download/0.10.3/rules_go-0.10.3.tar.gz", - sha256 = "feba3278c13cde8d67e341a837f69a029f698d7a27ddbb2a202be7a10b22142a", + url = "https://github.com/bazelbuild/rules_go/releases/download/0.11.0/rules_go-0.11.0.tar.gz", + sha256 = "f70c35a8c779bb92f7521ecb5a1c6604e9c3edd431e50b6376d7497abc8ad3c1", ) load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains") go_rules_dependencies() @@ -164,13 +163,13 @@ build files automatically using gazelle_. http_archive( name = "io_bazel_rules_go", - url = "https://github.com/bazelbuild/rules_go/releases/download/0.10.3/rules_go-0.10.3.tar.gz", - sha256 = "feba3278c13cde8d67e341a837f69a029f698d7a27ddbb2a202be7a10b22142a", + url = "https://github.com/bazelbuild/rules_go/releases/download/0.11.0/rules_go-0.11.0.tar.gz", + sha256 = "f70c35a8c779bb92f7521ecb5a1c6604e9c3edd431e50b6376d7497abc8ad3c1", ) http_archive( name = "bazel_gazelle", - url = "https://github.com/bazelbuild/bazel-gazelle/releases/download/0.10.1/bazel-gazelle-0.10.1.tar.gz", - sha256 = "d03625db67e9fb0905bbd206fa97e32ae9da894fe234a493e7517fd25faec914", + url = "https://github.com/bazelbuild/bazel-gazelle/releases/download/0.11.0/bazel-gazelle-0.11.0.tar.gz", + sha256 = "92a3c59734dad2ef85dc731dbcb2bc23c4568cded79d4b87ebccd787eb89e8d0", ) load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains") go_rules_dependencies()