Skip to content

Commit 99e0cf0

Browse files
author
Jay Conrod
authored
Announce release 0.24.4, 0.23.12 [skip ci] (bazel-contrib#2680)
1 parent d9aa745 commit 99e0cf0

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,15 @@ Slack: #bazel on `Gopher Slack`_
6969
Announcements
7070
-------------
7171

72+
2020-10-15
73+
Releases
74+
`v0.24.4 <https://github.com/bazelbuild/rules_go/releases/tag/v0.24.4>`_ and
75+
`v0.23.12 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.12>`_ are
76+
now available with support for Go 1.15.3 and 1.14.10.
7277
2020-09-22
7378
Releases
7479
`v0.24.3 <https://github.com/bazelbuild/rules_go/releases/tag/v0.24.3>`_ and
75-
`v0.23.11 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.113>`_
80+
`v0.23.11 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.11>`_
7681
are now available with bug fixes. Gazelle
7782
`v0.22.1 <https://github.com/bazelbuild/bazel-gazelle/releases/tag/v0.22.1>`_
7883
is also out.
@@ -81,11 +86,6 @@ Announcements
8186
`v0.24.2 <https://github.com/bazelbuild/rules_go/releases/tag/v0.24.2>`_ and
8287
`v0.23.10 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.10>`_ are
8388
now available with support for Go 1.15.2 and 1.14.9.
84-
2020-09-01
85-
Releases
86-
`v0.24.1 <https://github.com/bazelbuild/rules_go/releases/tag/v0.24.1>`_ and
87-
`v0.23.9 <https://github.com/bazelbuild/rules_go/releases/tag/v0.23.9>`_ are
88-
now available with support for Go 1.15.1 and 1.14.8.
8989

9090
Contents
9191
--------
@@ -170,7 +170,7 @@ The Go rules are tested and supported on the following host platforms:
170170
Users have reported success on several other platforms, but the rules are
171171
only tested on those listed above.
172172

173-
Note: The latest version of these rules (v0.24.3) requires Bazel ≥ 2.2.0 to work.
173+
Note: The latest version of these rules (v0.24.4) requires Bazel ≥ 2.2.0 to work.
174174

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

@@ -207,10 +207,10 @@ Go toolchain and register it for use.
207207
208208
http_archive(
209209
name = "io_bazel_rules_go",
210-
sha256 = "b725e6497741d7fc2d55fcc29a276627d10e43fa5d0bb692692890ae30d98d00",
210+
sha256 = "ac03931e56c3b229c145f1a8b2a2ad3e8d8f1af57e43ef28a26123362a1e3c7e",
211211
urls = [
212-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
213-
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
212+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz",
213+
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz",
214214
],
215215
)
216216
@@ -254,10 +254,10 @@ Add the ``bazel_gazelle`` repository and its dependencies to your
254254
255255
http_archive(
256256
name = "io_bazel_rules_go",
257-
sha256 = "b725e6497741d7fc2d55fcc29a276627d10e43fa5d0bb692692890ae30d98d00",
257+
sha256 = "ac03931e56c3b229c145f1a8b2a2ad3e8d8f1af57e43ef28a26123362a1e3c7e",
258258
urls = [
259-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
260-
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
259+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz",
260+
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz",
261261
],
262262
)
263263
@@ -380,10 +380,10 @@ automatically from a go.mod or Gopkg.lock file.
380380
# Download the Go rules.
381381
http_archive(
382382
name = "io_bazel_rules_go",
383-
sha256 = "b725e6497741d7fc2d55fcc29a276627d10e43fa5d0bb692692890ae30d98d00",
383+
sha256 = "ac03931e56c3b229c145f1a8b2a2ad3e8d8f1af57e43ef28a26123362a1e3c7e",
384384
urls = [
385-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
386-
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.3/rules_go-v0.24.3.tar.gz",
385+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz",
386+
"https://github.com/bazelbuild/rules_go/releases/download/v0.24.4/rules_go-v0.24.4.tar.gz",
387387
],
388388
)
389389

0 commit comments

Comments
 (0)