Update "Getting Started" instructions to 0.9.0 release. (#172)
This commit is contained in:
parent
3f7b196d2a
commit
90ea6feaf3
13
README.md
13
README.md
|
@ -24,13 +24,14 @@ your workspace. Replace the version number in the `tag` attribute with the
|
|||
version you wish to depend on:
|
||||
|
||||
```python
|
||||
# bazel-skylib 0.8.0 released 2019.03.20 (https://github.com/bazelbuild/bazel-skylib/releases/tag/0.8.0)
|
||||
skylib_version = "0.8.0"
|
||||
http_archive(
|
||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
||||
|
||||
maybe(
|
||||
http_archive,
|
||||
name = "bazel_skylib",
|
||||
type = "tar.gz",
|
||||
url = "https://github.com/bazelbuild/bazel-skylib/releases/download/{}/bazel-skylib.{}.tar.gz".format (skylib_version, skylib_version),
|
||||
sha256 = "2ef429f5d7ce7111263289644d233707dba35e39696377ebab8b0bc701f7818e",
|
||||
url = "https://github.com/bazelbuild/bazel-skylib/releases/download/0.9.0/bazel_skylib-0.9.0.tar.gz",
|
||||
sha256 = "1dde365491125a3db70731e25658dfdd3bc5dbdfd11b840b3e987ecf043c7ca0",
|
||||
)
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue