Skip to content

Commit 0cf827e

Browse files
release: v0.8.0
1 parent b379cba commit 0cf827e

4 files changed

Lines changed: 15 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ pre-`0.1.0` and the public API is unstable.
66

77
## [Unreleased]
88

9+
## [0.8.0] - 2026-06-20
10+
911
### Added
1012

1113
- **`runtime:parsers` Module**

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ members = [
2525
# (engine `Engine`/`Value`, `Runtime`, provider traits) and the `runtime:`
2626
# standard-module namespace are the versioned contract.
2727
[workspace.package]
28-
version = "0.7.0"
28+
version = "0.8.0"
2929
edition = "2024"
3030
rust-version = "1.95"
3131
license = "Apache-2.0"
@@ -137,11 +137,11 @@ self_update = { version = "0.42.0", default-features = false, features = [
137137

138138
# Internal crates, referenced by path so the dependency graph is the boundary
139139
# (DECISIONS.md D11).
140-
es-runtime-common = { path = "crates/common", version = "0.7.0" }
141-
es-runtime-engine = { path = "crates/engine", version = "0.7.0" }
142-
es-runtime-providers = { path = "crates/providers", version = "0.7.0" }
143-
es-runtime = { path = "crates/runtime", version = "0.7.0" }
144-
es-runtime-default-providers = { path = "crates/default-providers", version = "0.7.0" }
140+
es-runtime-common = { path = "crates/common", version = "0.8.0" }
141+
es-runtime-engine = { path = "crates/engine", version = "0.8.0" }
142+
es-runtime-providers = { path = "crates/providers", version = "0.8.0" }
143+
es-runtime = { path = "crates/runtime", version = "0.8.0" }
144+
es-runtime-default-providers = { path = "crates/default-providers", version = "0.8.0" }
145145
# Debug info dominates `target/` disk on a V8-sized dependency graph (tens of
146146
# GB). Keep it lean: our own crates keep line tables so panic backtraces still
147147
# resolve to file:line; dependencies — the bulk, rarely stepped through — carry

site/src/runtime-version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
// each bump. Kept as a committed module (rather than read from Cargo.toml in
44
// vite.config.js) so the site build needs no build-time file read and stays
55
// portable to any static host, including Cloudflare.
6-
export const RUNTIME_VERSION = "0.7.0";
6+
export const RUNTIME_VERSION = "0.8.0";

0 commit comments

Comments
 (0)