Skip to content

Commit a332f62

Browse files
Update readme for 7.0.0 (#211)
See above
1 parent 6a491b1 commit a332f62

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,27 @@ http_jar = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_j
238238
http_jar(
239239
name = "bazel_diff",
240240
urls = [
241-
"https://github.com/Tinder/bazel-diff/releases/download/6.1.0/bazel-diff_deploy.jar"
241+
"https://github.com/Tinder/bazel-diff/releases/download/7.0.0/bazel-diff_deploy.jar"
242242
],
243-
sha256 = "5d90de4561afd1e711bc62956560a9dfcbb4454bd6b209d6e68272b65c3cb50a",
243+
sha256 = "0b9e32f9c20e570846b083743fe967ae54d13e2a1f7364983e0a7792979442be",
244+
)
245+
```
246+
247+
#### WORKSPACE snippet
248+
249+
```bazel
250+
http_jar = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_jar")
251+
http_jar(
252+
name = "bazel_diff",
253+
urls = [
254+
"https://github.com/Tinder/bazel-diff/releases/download/7.0.0/bazel-diff_deploy.jar"
255+
],
256+
sha256 = "0b9e32f9c20e570846b083743fe967ae54d13e2a1f7364983e0a7792979442be",
244257
)
258+
259+
load("//@bazel_diff:repositories.bzl", "bazel_diff_dependencies")
260+
261+
bazel_diff_dependencies()
245262
```
246263

247264
Second, add in your root `BUILD.bazel` file:

0 commit comments

Comments
 (0)