Skip to content

Commit

Permalink
chore: issue fix release → 0.10.1
Browse files Browse the repository at this point in the history
- fix: bcr publish gone wrong
- chore: bump version → `0.10.1`
- chore: issue new tarballs
- chore: update readme/doc index

Signed-off-by: Sam Gammon <sam@elide.ventures>
  • Loading branch information
sgammon committed Sep 8, 2023
1 parent 1fa60fe commit 62e6ee1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 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.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

0 comments on commit 62e6ee1

Please sign in to comment.