Skip to content

Commit bf3c5a9

Browse files
author
Jay Conrod
authored
Announce rules_go v0.24.0 and Gazelle v0.22.0 [skip ci] (bazel-contrib#2632)
1 parent f17cccb commit bf3c5a9

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

README.rst

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ Slack: #bazel on `Gopher Slack`_
6969
Announcements
7070
-------------
7171

72+
2020-08-27
73+
rules_go release
74+
`v0.24.0 <https://github.com/bazelbuild/rules_go/releases/tag/v0.24.0>`_ and
75+
Gazelle release
76+
`v0.22.0 <https://github.com/bazelbuild/bazel-gazelle/releases/tag/v0.22.0>`_
77+
are now available.
7278
2020-08-12
7379
Releases
7480
`v0.23.8 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.8>`_ and
@@ -79,11 +85,6 @@ Announcements
7985
`v0.23.7 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.7>`_ and
8086
`v0.22.10 <https://github.com/bazelbuild/rules_go/releases/tag/v0.22.10>`_ are
8187
now available with support for Go 1.14.7 and 1.13.15.
82-
2020-07-23
83-
Releases
84-
`v0.23.6 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.6>`_ and
85-
`v0.22.9 <https://github.com/bazelbuild/rules_go/releases/tag/v0.22.9>`_ are
86-
now available with two bug fixes.
8788

8889
Contents
8990
--------
@@ -168,7 +169,7 @@ The Go rules are tested and supported on the following host platforms:
168169
Users have reported success on several other platforms, but the rules are
169170
only tested on those listed above.
170171

171-
Note: The latest version of these rules (v0.23.8) requires Bazel ≥ 1.2.0 to work.
172+
Note: The latest version of these rules (v0.24.0) requires Bazel ≥ 2.2.0 to work.
172173

173174
The ``master`` branch is only guaranteed to work with the latest version of Bazel.
174175

@@ -205,10 +206,10 @@ Go toolchain and register it for use.
205206
206207
http_archive(
207208
name = "io_bazel_rules_go",
208-
sha256 = "2697f6bc7c529ee5e6a2d9799870b9ec9eaeb3ee7d70ed50b87a2c2c97e13d9e",
209+
sha256 = "08369b54a7cbe9348eea474e36c9bbb19d47101e8860cec75cbf1ccd4f749281",
209210
urls = [
210-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
211-
"https://github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
211+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.0/rules_go-v0.24.0.tar.gz",
212+
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.0/rules_go-v0.24.0.tar.gz",
212213
],
213214
)
214215
@@ -252,19 +253,19 @@ Add the ``bazel_gazelle`` repository and its dependencies to your
252253
253254
http_archive(
254255
name = "io_bazel_rules_go",
255-
sha256 = "2697f6bc7c529ee5e6a2d9799870b9ec9eaeb3ee7d70ed50b87a2c2c97e13d9e",
256+
sha256 = "08369b54a7cbe9348eea474e36c9bbb19d47101e8860cec75cbf1ccd4f749281",
256257
urls = [
257-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
258-
"https://github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
258+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.0/rules_go-v0.24.0.tar.gz",
259+
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.0/rules_go-v0.24.0.tar.gz",
259260
],
260261
)
261262
262263
http_archive(
263264
name = "bazel_gazelle",
264-
sha256 = "cdb02a887a7187ea4d5a27452311a75ed8637379a1287d8eeb952138ea485f7d",
265+
sha256 = "d4113967ab451dd4d2d767c3ca5f927fec4b30f3b2c6f8135a2033b9c05a5687",
265266
urls = [
266-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.1/bazel-gazelle-v0.21.1.tar.gz",
267-
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.1/bazel-gazelle-v0.21.1.tar.gz",
267+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.0/bazel-gazelle-v0.22.0.tar.gz",
268+
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.0/bazel-gazelle-v0.22.0.tar.gz",
268269
],
269270
)
270271
@@ -378,20 +379,20 @@ automatically from a go.mod or Gopkg.lock file.
378379
# Download the Go rules.
379380
http_archive(
380381
name = "io_bazel_rules_go",
381-
sha256 = "2697f6bc7c529ee5e6a2d9799870b9ec9eaeb3ee7d70ed50b87a2c2c97e13d9e",
382+
sha256 = "08369b54a7cbe9348eea474e36c9bbb19d47101e8860cec75cbf1ccd4f749281",
382383
urls = [
383-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
384-
"https://github.com/bazelbuild/rules_go/releases/download/v0.23.8/rules_go-v0.23.8.tar.gz",
384+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.0/rules_go-v0.24.0.tar.gz",
385+
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.0/rules_go-v0.24.0.tar.gz",
385386
],
386387
)
387388
388389
# Download Gazelle.
389390
http_archive(
390391
name = "bazel_gazelle",
391-
sha256 = "cdb02a887a7187ea4d5a27452311a75ed8637379a1287d8eeb952138ea485f7d",
392+
sha256 = "d4113967ab451dd4d2d767c3ca5f927fec4b30f3b2c6f8135a2033b9c05a5687",
392393
urls = [
393-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.1/bazel-gazelle-v0.21.1.tar.gz",
394-
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.21.1/bazel-gazelle-v0.21.1.tar.gz",
394+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.0/bazel-gazelle-v0.22.0.tar.gz",
395+
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.22.0/bazel-gazelle-v0.22.0.tar.gz",
395396
],
396397
)
397398

0 commit comments

Comments
 (0)