From 63409903724138f7e582189e6b7c655c1b13a54b Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 23 Oct 2020 08:56:45 -0500 Subject: [PATCH] Bump required Bazel version to 3.0.0. --- docs/index.md | 2 +- workspace.bzl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 40ad8986cb..394587e0bd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -36,7 +36,7 @@ load("@io_bazel_rules_rust//:workspace.bzl", "rust_workspace") rust_workspace() ``` -The rules are under active development, as such the lastest commit on the master branch should be used. `master` currently requires Bazel >= 0.26.0. +The rules are under active development, as such the lastest commit on the master branch should be used. `master` currently requires Bazel >= 3.0.0. ## Rules diff --git a/workspace.bzl b/workspace.bzl index 57ca95d4c3..dcbcb251c8 100644 --- a/workspace.bzl +++ b/workspace.bzl @@ -2,7 +2,7 @@ load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") load("@bazel_skylib//lib:versions.bzl", "versions") -_MINIMUM_SUPPORTED_BAZEL_VERSION = "0.17.1" +_MINIMUM_SUPPORTED_BAZEL_VERSION = "3.0.0" def _bazel_version_impl(repository_ctx): """The implementation for the `bazel_version` rule