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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ namespace) is unstable and may change between minor releases until the API freez

## [Unreleased]

## [0.11.0] - 2026-07-21

### Added

- **`/docs/wasm` site page.** One place for the whole WebAssembly + WASI surface:
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ members = [
# (engine `Engine`/`Value`, `Runtime`, provider traits) and the `runtime:`
# standard-module namespace are the versioned contract.
[workspace.package]
version = "0.10.0"
version = "0.11.0"
edition = "2024"
rust-version = "1.95"
license = "Apache-2.0"
Expand Down Expand Up @@ -144,11 +144,11 @@ self_update = { version = "1.0.0-rc.6", default-features = false, features = [

# Internal crates, referenced by path so the dependency graph is the boundary
# (DECISIONS.md D11).
es-runtime-common = { path = "crates/common", version = "0.10.0" }
es-runtime-engine = { path = "crates/engine", version = "0.10.0" }
es-runtime-providers = { path = "crates/providers", version = "0.10.0" }
es-runtime = { path = "crates/runtime", version = "0.10.0" }
es-runtime-default-providers = { path = "crates/default-providers", version = "0.10.0" }
es-runtime-common = { path = "crates/common", version = "0.11.0" }
es-runtime-engine = { path = "crates/engine", version = "0.11.0" }
es-runtime-providers = { path = "crates/providers", version = "0.11.0" }
es-runtime = { path = "crates/runtime", version = "0.11.0" }
es-runtime-default-providers = { path = "crates/default-providers", version = "0.11.0" }
# Debug info dominates `target/` disk on a V8-sized dependency graph (tens of
# GB). Keep it lean: our own crates keep line tables so panic backtraces still
# resolve to file:line; dependencies — the bulk, rarely stepped through — carry
Expand Down
Loading