Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,16 @@ Mailing list: `bazel-go-discuss`_
Announcements
-------------

April 16, 2018
Release `0.11.0 <https://github.com/bazelbuild/rules_go/releases/tag/0.11.0>`_
is now available.
April 4, 2018
Release `0.10.3 <https://github.com/bazelbuild/rules_go/releases/tag/0.10.3>`_
is now available. Release 0.11.0 is now expected around April 16, but you can
try it out on the ``release-0.11`` branch.
March 29, 2018
Release `0.10.2 <https://github.com/bazelbuild/rules_go/releases/tag/0.10.2>`_
is now available.
March 23, 2018
Gazelle `0.10.1
<https://github.com/bazelbuild/bazel-gazelle/releases/tag/0.10.1>`_ is now
available.

.. contents::

Expand Down Expand Up @@ -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.

Expand All @@ -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()
Expand Down Expand Up @@ -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()
Expand Down