Skip to content

Commit ba56fd4

Browse files
authoredFeb 13, 2024
List new shasum for recent releases (bazel-contrib#255)
Closes bazel-contrib#253.
1 parent 2ab388c commit ba56fd4

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed
 

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
See notes on the [release](https://github.com/bazel-contrib/toolchains_llvm/releases)
66
for how to get started.
77

8+
NOTE: For releases prior to 0.10.1, please also see [these notes](REPO_RENAME.md).
9+
810
<!-- Release Notes template is at .github/workflows/release_prep.sh -->
911

1012
## Basic Usage

‎REPO_RENAME.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Rename from bazel-toolchain to toolchains_llvm
2+
3+
As part of the transfer to the bazel-contrib org, the repo has been renamed to
4+
`toolchains_llvm`. This has affected the dynamically generated source archives
5+
which now have a different tree prefix, and consequently, a different shasum.
6+
7+
From release 0.10.1 onwards, the releases have all generated a release artifact
8+
which is guaranteed to be stable. But for prior releases, users need to change
9+
the `shasum` and `strip_prefix` attributes for referencing this repo.
10+
11+
0.10.0:
12+
13+
```bzl
14+
strip_prefix = "toolchains_llvm-0.10.0",
15+
shasum = "a2877b8bf596ee4c0310b50463796efd8f360dcb087675e9101e15c39e03d7ea",
16+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.10.0.tar.gz",
17+
```
18+
19+
0.9:
20+
21+
```bzl
22+
strip_prefix = "toolchains_llvm-0.9",
23+
shasum = "b2d168315dd0785f170b2b306b86e577c36e812b8f8b05568f9403141f2c24dd",
24+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.9.tar.gz",
25+
```
26+
27+
0.8.2:
28+
29+
```bzl
30+
strip_prefix = "toolchains_llvm-0.8.2",
31+
shasum = "3e251524b3e8f3b9ec93848e5267c168424f43b7b554efc983a5291c33d78cde",
32+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.8.2.tar.gz",
33+
```
34+
35+
0.8.1:
36+
37+
```bzl
38+
strip_prefix = "toolchains_llvm-0.8.1",
39+
shasum = "3bb45f480e3eb198f39fc97e91df2c2fc0beaabbea620ba3034ac505786a1813",
40+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.8.1.tar.gz",
41+
```
42+
43+
0.8:
44+
45+
```bzl
46+
strip_prefix = "toolchains_llvm-0.8",
47+
shasum = "f121449dd565d59274b7421a62f3ed1f16ad7ceab4575c5b34f882ba441093bd",
48+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.8.tar.gz",
49+
```
50+
51+
0.7.2:
52+
53+
```bzl
54+
strip_prefix = "toolchains_llvm-0.7.2",
55+
shasum = "ea7d247dd4a0058c008a6e8fa0855a69d57b0cb500271c7b48c1a28512608ecd",
56+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.7.2.tar.gz",
57+
```
58+
59+
0.7.1:
60+
61+
```bzl
62+
strip_prefix = "toolchains_llvm-0.7.1",
63+
shasum = "5613b430a6b7f6d0eb03011976df53abe7f4cc6c3ec43be066b679c4ad81e3bf",
64+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.7.1.tar.gz",
65+
```
66+
67+
0.7:
68+
69+
```bzl
70+
strip_prefix = "toolchains_llvm-0.7",
71+
shasum = "bb07651178c6fbdc0981799b96a09ea5b4f01d98a98ca64c679db1601a92a66f",
72+
url = "https://github.com/bazel-contrib/toolchains_llvm/archive/refs/tags/0.7.tar.gz",
73+
```

0 commit comments

Comments
 (0)
Please sign in to comment.