Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: issue fix release → 0.10.1 #122

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0",
version = "0.10.1",
)

JAVA_VERSION = "20"
Expand Down
4 changes: 2 additions & 2 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.0`
> Latest release: `0.10.1`

> **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 = "157efdd3a6ac12b85838ae81042f2fdcf60d70ba5fb279585ca8f27cf7f1a94d",
strip_prefix = "rules_graalvm-0.10.0",
sha256 = "ca6fa64992139a3fd04fd878857319d4b865c80624e6a73967d340be4f64cb52",
strip_prefix = "rules_graalvm-0.10.1",
urls = [
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.0/rules_graalvm-0.10.0.zip",
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.1/rules_graalvm-0.10.1.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.0")
bazel_dep(name = "rules_graalvm", version = "0.10.1")
```

```starlark
# Until we ship to BCR:
archive_override(
module_name = "rules_graalvm",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.10.0/rules_graalvm-0.10.0.zip"],
strip_prefix = "rules_graalvm-0.10.0",
integrity = "sha256-FX7906asErhYOK6BBC8v3PYNcLpfsnlYXKjyfPfxqU0=",
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=",
)
```

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.0`
> Latest release: `0.10.1`

> **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 = "157efdd3a6ac12b85838ae81042f2fdcf60d70ba5fb279585ca8f27cf7f1a94d",
strip_prefix = "rules_graalvm-0.10.0",
sha256 = "ca6fa64992139a3fd04fd878857319d4b865c80624e6a73967d340be4f64cb52",
strip_prefix = "rules_graalvm-0.10.1",
urls = [
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.0/rules_graalvm-0.10.0.zip",
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.1/rules_graalvm-0.10.1.zip",
],
)
```
Expand Down Expand Up @@ -72,16 +72,16 @@ graalvm_repository(
**Or, via `MODULE.bazel`:**

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

```python
# Until we ship to BCR:
archive_override(
module_name = "rules_graalvm",
urls = ["https://github.com/sgammon/rules_graalvm/releases/download/v0.10.0/rules_graalvm-0.10.0.zip"],
strip_prefix = "rules_graalvm-0.10.0",
integrity = "sha256-FX7906asErhYOK6BBC8v3PYNcLpfsnlYXKjyfPfxqU0=",
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=",
)
```

Expand Down
Loading