Skip to content

Commit b883b70

Browse files
release: v0.3.0
1 parent 01d0ab7 commit b883b70

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.3.0] - 2026-06-16
10+
911
### Added
1012

1113
- **`esrun types --install`.** Writes the `runtime:` TypeScript definitions into

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.2.0"
28+
version = "0.3.0"
2929
edition = "2024"
3030
rust-version = "1.95"
3131
license = "Apache-2.0"
@@ -124,11 +124,11 @@ self_update = { version = "0.42.0", default-features = false, features = [
124124

125125
# Internal crates, referenced by path so the dependency graph is the boundary
126126
# (DECISIONS.md D11).
127-
es-runtime-common = { path = "crates/common", version = "0.2.0" }
128-
es-runtime-engine = { path = "crates/engine", version = "0.2.0" }
129-
es-runtime-providers = { path = "crates/providers", version = "0.2.0" }
130-
es-runtime = { path = "crates/runtime", version = "0.2.0" }
131-
es-runtime-default-providers = { path = "crates/default-providers", version = "0.2.0" }
127+
es-runtime-common = { path = "crates/common", version = "0.3.0" }
128+
es-runtime-engine = { path = "crates/engine", version = "0.3.0" }
129+
es-runtime-providers = { path = "crates/providers", version = "0.3.0" }
130+
es-runtime = { path = "crates/runtime", version = "0.3.0" }
131+
es-runtime-default-providers = { path = "crates/default-providers", version = "0.3.0" }
132132

133133
# Optimize the big-integer/RSA math even in dev+test: unoptimized RSA key
134134
# generation is ~30s/key, which would dominate the test suite. These crates are

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.2.0";
6+
export const RUNTIME_VERSION = "0.3.0";

0 commit comments

Comments
 (0)