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 17400a8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 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.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Use [GraalVM](https://graalvm.org) from [Bazel](https://bazel.build), with suppo
```starlark
http_archive(
name = "rules_graalvm",
sha256 = "157efdd3a6ac12b85838ae81042f2fdcf60d70ba5fb279585ca8f27cf7f1a94d",
sha256 = None,
strip_prefix = "rules_graalvm-0.10.0",
urls = [
"https://github.com/sgammon/rules_graalvm/releases/download/v0.10.0/rules_graalvm-0.10.0.zip",
Expand Down Expand Up @@ -77,7 +77,7 @@ 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
Expand All @@ -86,7 +86,7 @@ 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=",
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.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 = None,
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 = None,
)
```

Expand Down

0 comments on commit 17400a8

Please sign in to comment.