diff --git a/README.rst b/README.rst index 2aa702d023..6a96025715 100644 --- a/README.rst +++ b/README.rst @@ -69,6 +69,11 @@ Slack: #bazel on `Gopher Slack`_ Announcements ------------- +2020-10-26 + Releases + `v0.24.5 `_ and + `v0.23.13 `_ are + are now available with bug fixes. 2020-10-15 Releases `v0.24.4 `_ and @@ -81,11 +86,6 @@ Announcements are now available with bug fixes. Gazelle `v0.22.1 `_ is also out. -2020-09-09 - Releases - `v0.24.2 `_ and - `v0.23.10 `_ are - now available with support for Go 1.15.2 and 1.14.9. Contents -------- @@ -170,7 +170,7 @@ The Go rules are tested and supported on the following host platforms: Users have reported success on several other platforms, but the rules are only tested on those listed above. -Note: The latest version of these rules (v0.24.4) requires Bazel ≥ 2.2.0 to work. +Note: The latest version of these rules (v0.24.5) requires Bazel ≥ 2.2.0 to work. The ``master`` branch is only guaranteed to work with the latest version of Bazel. @@ -207,10 +207,10 @@ Go toolchain and register it for use. http_archive( name = "io_bazel_rules_go", - sha256 = "ac03931e56c3b229c145f1a8b2a2ad3e8d8f1af57e43ef28a26123362a1e3c7e", + sha256 = "d1ffd055969c8f8d431e2d439813e42326961d0942bdf734d2c95dc30c369566", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz", - "https://github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz", + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", + "https://github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", ], ) @@ -254,10 +254,10 @@ Add the ``bazel_gazelle`` repository and its dependencies to your http_archive( name = "io_bazel_rules_go", - sha256 = "ac03931e56c3b229c145f1a8b2a2ad3e8d8f1af57e43ef28a26123362a1e3c7e", + sha256 = "d1ffd055969c8f8d431e2d439813e42326961d0942bdf734d2c95dc30c369566", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz", - "https://github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz", + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", + "https://github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", ], ) @@ -380,10 +380,10 @@ automatically from a go.mod or Gopkg.lock file. # Download the Go rules. http_archive( name = "io_bazel_rules_go", - sha256 = "ac03931e56c3b229c145f1a8b2a2ad3e8d8f1af57e43ef28a26123362a1e3c7e", + sha256 = "d1ffd055969c8f8d431e2d439813e42326961d0942bdf734d2c95dc30c369566", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz", - "https://github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz", + "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", + "https://github.com/bazelbuild/rules_go/releases/download/v0.24.5/rules_go-v0.24.5.tar.gz", ], )