Skip to content

Commit

Permalink
chore: prep release → 0.10.2
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Sep 11, 2023
1 parent 54c8803 commit 5e150af
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "rules_graalvm",
version = "0.10.1",
version = "0.10.2",
)

JAVA_VERSION = "20"
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

---

> Latest release: `0.10.1`
> Latest release: `0.10.2`
> **Important**
> Currently in beta. Feedback welcome but will probably break your build.
Expand Down Expand Up @@ -37,10 +37,10 @@ Use [GraalVM](https://graalvm.org) from [Bazel](https://bazel.build), with suppo
```starlark
http_archive(
name = "rules_graalvm",
sha256 = "ca6fa64992139a3fd04fd878857319d4b865c80624e6a73967d340be4f64cb52",
strip_prefix = "rules_graalvm-0.10.1",
sha256 = None,
strip_prefix = "rules_graalvm-0.10.2",
urls = [
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.1/rules_graalvm-0.10.1.zip",
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.2/rules_graalvm-0.10.2.zip",
],
)
```
Expand Down Expand Up @@ -77,16 +77,16 @@ register_graalvm_toolchains()
> To use Bzlmod with `rules_graalvm`, you will need the `archive_override` below (until we go live on BCR).
```starlark
bazel_dep(name = "rules_graalvm", version = "0.10.1")
bazel_dep(name = "rules_graalvm", version = "0.10.2")
```

```starlark
# Until we ship to BCR:
archive_override(
module_name = "rules_graalvm",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.10.1/rules_graalvm-0.10.1.zip"],
strip_prefix = "rules_graalvm-0.10.1",
integrity = "sha256-ym+mSZITmj/QT9h4hXMZ1LhlyAYk5qc5Z9NAvk9ky1I=",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.10.2/rules_graalvm-0.10.2.zip"],
strip_prefix = "rules_graalvm-0.10.2",
integrity = None,
)
```

Expand Down
16 changes: 8 additions & 8 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

---

> Latest release: `0.10.1`
> Latest release: `0.10.2`
> **Important**
> Currently in beta. Feedback welcome but will probably break your build.
Expand Down Expand Up @@ -37,10 +37,10 @@ Use [GraalVM](https://graalvm.org) from [Bazel](https://bazel.build), with suppo
```python
http_archive(
name = "rules_graalvm",
sha256 = "ca6fa64992139a3fd04fd878857319d4b865c80624e6a73967d340be4f64cb52",
strip_prefix = "rules_graalvm-0.10.1",
sha256 = None,
strip_prefix = "rules_graalvm-0.10.2",
urls = [
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.1/rules_graalvm-0.10.1.zip",
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.2/rules_graalvm-0.10.2.zip",
],
)
```
Expand Down Expand Up @@ -72,16 +72,16 @@ graalvm_repository(
**Or, via `MODULE.bazel`:**

```python
bazel_dep(name = "rules_graalvm", version = "0.10.1")
bazel_dep(name = "rules_graalvm", version = "0.10.2")
```

```python
# Until we ship to BCR:
archive_override(
module_name = "rules_graalvm",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.10.1/rules_graalvm-0.10.1.zip"],
strip_prefix = "rules_graalvm-0.10.1",
integrity = "sha256-ym+mSZITmj/QT9h4hXMZ1LhlyAYk5qc5Z9NAvk9ky1I=",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.10.2/rules_graalvm-0.10.2.zip"],
strip_prefix = "rules_graalvm-0.10.2",
integrity = None,
)
```

Expand Down

0 comments on commit 5e150af

Please sign in to comment.