Skip to content

Commit

Permalink
chore: cut release → 0.9.1
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Aug 23, 2023
1 parent f002146 commit 54eb57f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

---

> Latest release: `0.9.0`
> Latest release: `0.9.1`
> **Important**
> Currently in beta. Feedback welcome but will probably break your build.
Expand All @@ -30,10 +30,10 @@ Use [GraalVM](https://graalvm.org) from [Bazel](https://bazel.build), with suppo
```starlark
http_archive(
name = "rules_graalvm",
sha256 = "96323ac1b7a5b9db1ae1a388c5ed1fb830d4628d3ab4b7f09538558321e03111",
strip_prefix = "rules_graalvm-0.9.0",
sha256 = None,
strip_prefix = "rules_graalvm-0.9.1",
urls = [
"https://github.com/sgammon/rules_graalvm/archive/v0.9.0.tar.gz",
"https://github.com/sgammon/rules_graalvm/releases/download/v0.9.1/rules_graalvm-0.9.1.tar.gz",
],
)
```
Expand Down Expand Up @@ -67,9 +67,9 @@ bazel_dep(name = "rules_graalvm", version = "0.9.0")
# Until we ship to BCR:
archive_override(
module_name = "rules_graalvm",
urls = ["https://github.com/sgammon/rules_graalvm/archive/v0.9.0.tar.gz"],
strip_prefix = "rules_graalvm-0.9.0",
integrity = "sha256-ljI6wbeludsa4aOIxe0fuDDUYo06tLfwlThVgyHgMRE=",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.9.1/rules_graalvm-0.9.1.tar.gz"],
strip_prefix = "rules_graalvm-0.9.1",
integrity = None,
)
```

Expand Down
10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GraalVM Rules for Bazel

> Latest release: `0.9.0`
> Latest release: `0.9.1`
These rules let you use [GraalVM](https://graalvm.org) from [Bazel](https://bazel.build), with support for:

Expand All @@ -25,7 +25,7 @@ http_archive(
sha256 = "96323ac1b7a5b9db1ae1a388c5ed1fb830d4628d3ab4b7f09538558321e03111",
strip_prefix = "rules_graalvm-0.9.0",
urls = [
"https://github.com/sgammon/rules_graalvm/archive/v0.9.0.tar.gz",
"https://github.com/sgammon/rules_graalvm/releases/download/v0.9.1/rules_graalvm-0.9.1.tar.gz",
],
)
```
Expand Down Expand Up @@ -59,9 +59,9 @@ bazel_dep(name = "rules_graalvm", version = "0.9.0")
# Until we ship to BCR:
archive_override(
module_name = "rules_graalvm",
urls = ["https://github.com/sgammon/rules_graalvm/archive/v0.9.0.tar.gz"],
strip_prefix = "rules_graalvm-0.9.0",
integrity = "sha256-ljI6wbeludsa4aOIxe0fuDDUYo06tLfwlThVgyHgMRE=",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.9.1/rules_graalvm-0.9.1.tar.gz"],
strip_prefix = "rules_graalvm-0.9.1",
integrity = None,
)
```

Expand Down
2 changes: 2 additions & 0 deletions tools/scripts/mapping_generator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
This tool generates `graalvm_bindist_map.bzl`, which maps artifacts to their download URLs and
expected hashes.
"""

__version__ = (0, 9, 1)

0 comments on commit 54eb57f

Please sign in to comment.