Skip to content
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 .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: "Setup: Elide"
uses: elide-dev/setup-elide@990b915b2974a70e7654acb1303607b4cd1d3538 # v2
with:
version: "1.0.0-beta8"
version: "1.0.0-beta9"
- name: "Review: Claude"
id: claude-review
uses: anthropics/claude-code-action@a5528eec7426a4f0c9c1ac96018daa53ebd05bc4 # beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: "Setup: Elide"
uses: elide-dev/setup-elide@990b915b2974a70e7654acb1303607b4cd1d3538 # v2
with:
version: "1.0.0-beta8"
version: "1.0.0-beta9"
- name: "Check: Anthropic API Key"
run: |
if [ -z "${{ secrets.ANTHROPIC_API_KEY }}" ]; then
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/job.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ name: Framework

env:
RUST_BACKTRACE: full
ELIDE_VERSION: "1.0.0-beta8"
ELIDE_VERSION: "1.0.0-beta9"
SCCACHE_DIRECT: "true"
RUSTC_WRAPPER: "sccache"
BUILDLESS_APIKEY: ${{ secrets.BUILDLESS_APIKEY }}
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
- name: "Setup: Elide"
uses: elide-dev/setup-elide@990b915b2974a70e7654acb1303607b4cd1d3538 # v2
with:
version: "1.0.0-beta8"
version: "1.0.0-beta9"
- name: "Setup: uv"
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v6.4.1
- name: "Setup: Dependencies"
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/job.native-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ name: Native Image
COSIGN_PASSWORD:
required: false
description: "Cosign Password"
SIGNING_KEY:
required: true
description: "GPG Signing Key"

# Do not add `ELIDE_VERSION` here like other workflows, or it may interfere with the release version override.
env:
Expand Down Expand Up @@ -336,6 +339,11 @@ jobs:
-Pelide.static=${{ inputs.static }} \
-Pelide.release=${{ inputs.release }} \
-Pelide.buildMode=${{ inputs.release == true && 'release' || 'dev' }}
- name: "Setup: Signing Keys"
run: |
cat <(echo -e "${{ secrets.SIGNING_KEY }}") | base64 -d | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
gpg --export-secret-keys > /home/runner/.gnupg/secring.gpg
- name: "Artifact: Build Outputs"
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
id: build-artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/job.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ permissions:
env:
CI: "true"
RUST_BACKTRACE: full
ELIDE_VERSION: "1.0.0-beta8"
ELIDE_VERSION: "1.0.0-beta9"
SCCACHE_DIRECT: "true"
RUSTC_WRAPPER: "sccache"

Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
- name: "Setup: Elide"
uses: elide-dev/setup-elide@990b915b2974a70e7654acb1303607b4cd1d3538 # v2
with:
version: "1.0.0-beta8"
version: "1.0.0-beta9"
- name: "Setup: uv"
uses: astral-sh/setup-uv@7edac99f961f18b581bbd960d59d049f04c0002f # v6.4.1
- name: "Setup: Dependencies"
Expand Down
2 changes: 1 addition & 1 deletion .release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta8
1.0.0-beta9
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta8
1.0.0-beta9
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ exclude = ["crates/build", "crates/transport", "third_party", "runtime", "crates
license = "MIT"
edition = "2024"
rust-version = "1.88.0"
version = "1.0.0-beta8"
version = "1.0.0-beta9"
authors = ["Elide Technologies, Inc."]
homepage = "https://elide.dev"
documentation = "https://docs.elide.dev"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</p>

<p align="center">
Latest: <code>1.0.0-beta8</code>
Latest: <code>1.0.0-beta9</code>
</p>
<p align="center">
Learn more at <a href="https://elide.dev">elide.dev</a> | <a href="https://docs.elide.dev">Docs, Guides, and Samples</a>
Expand Down Expand Up @@ -179,7 +179,7 @@ We provide a [setup action](https://github.com/marketplace/actions/setup-elide):
uses: elide-dev/setup-elide@v2
with:
# any tag from the `elide-dev/elide` repo; omit for latest
version: 1.0.0-beta8
version: 1.0.0-beta9
```

### Using Elide from Gradle
Expand Down
56 changes: 28 additions & 28 deletions buildscript-gradle.lockfile

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

2 changes: 1 addition & 1 deletion elide.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
amends "elide:project.pkl"

name = "elide"
version = "1.0.0-beta8"
version = "1.0.0-beta9"
description = "Polyglot runtime and toolchain"

local reactVersion = "18.3.1"
Expand Down
4 changes: 2 additions & 2 deletions gradle/elide.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ diktat = "2.0.0"
docker-plugin = "9.4.0"
doctor-plugin = "0.10.0"
dokka = "2.0.0"
elide = "1.0.0-beta8"
elide-bin = "1.0.0-beta8"
elide = "1.0.0-beta9"
elide-bin = "1.0.0-beta9"
errorprone = "2.36.0"
faker = "1.15.0"
filament = "1.2.0.0-SNAPSHOT"
Expand Down
Loading
Loading