From dfe36447e17239f46970808a215d4fd954665892 Mon Sep 17 00:00:00 2001 From: Filip Filmar Date: Fri, 27 Oct 2023 08:17:40 +0000 Subject: [PATCH] docs: update installation and usage Updates the `README.md` installation instructions. The instructions are on how to use the "latest" version. Released versions will need different instructions. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 074ea66..8948ad2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ In your `WORKSPACE` file load and include as follows: ``` load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") -BAZEL_BATS_COMMIT_ID = "e85b43efc90133d5cd4ca807a811e9aa4006fb49" +BAZEL_BATS_COMMIT_ID = "22db48a75128044bb611492b3e1e654187881fa3" git_repository( name = "bazel_bats", @@ -25,8 +25,9 @@ load("@bazel_bats//:deps.bzl", "bazel_bats_dependencies") bazel_bats_dependencies() ``` -You can alternatively specify the specific bats-core version, as well as -optionally adding bats-core extensions. +You can alternatively specify the specific `bats-core` version, as well +as optionally adding `bats-core` extensions in +`bazel_bats_dependencies(...)`: ``` BATS_ASSERT_VERSION = "2.0.0"