Skip to content

Commit 1589017

Browse files
committed
build: bump to 0.1.8
1 parent 7894885 commit 1589017

File tree

6 files changed

+28
-18
lines changed

6 files changed

+28
-18
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bazel_dep(name = "rules_shell", version = "0.3.0", dev_dependency = True)
4444

4545
# FormatJS CLI toolchain
4646
formatjs_cli = use_extension("//formatjs_cli:extensions.bzl", "formatjs_cli")
47-
formatjs_cli.toolchain(version = "0.1.6")
47+
formatjs_cli.toolchain(version = "0.1.8")
4848
use_repo(
4949
formatjs_cli,
5050
"formatjs_cli_toolchains",

MODULE.bazel.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/aggregate/MODULE.bazel.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/custom_version/MODULE.bazel.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/simple/MODULE.bazel.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

formatjs_cli/repositories.bzl

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
"""Repository rules for FormatJS CLI toolchains."""
22

3-
DEFAULT_VERSION = "0.1.6"
3+
DEFAULT_VERSION = "0.1.8"
44

55
FORMATJS_CLI_VERSIONS = {
6+
"0.1.8": {
7+
"darwin-arm64": {
8+
"url": "https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.8/formatjs_cli-darwin-arm64",
9+
"sha256": "3f581b720bc1162c61a3bbba6f730de87ef5056b07393644e5ec69d111d7627b",
10+
},
11+
"linux-x64": {
12+
"url": "https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.8/formatjs_cli-linux-x64",
13+
"sha256": "6d57d42a83d90f9bf311c23e3754a214a855e965a538de1fe68b54553320a587",
14+
},
15+
},
616
"0.1.6": {
717
"darwin-arm64": {
818
"url": "https://github.com/formatjs/formatjs/releases/download/formatjs_cli_v0.1.6/formatjs_cli-darwin-arm64",

0 commit comments

Comments
 (0)