diff --git a/Cargo.lock b/Cargo.lock index ea2e76d..2819732 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -366,7 +366,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "opy-cli" -version = "0.1.4" +version = "0.1.5" dependencies = [ "clap", "clap_complete", @@ -379,7 +379,7 @@ dependencies = [ [[package]] name = "opy-compiler" -version = "0.1.4" +version = "0.1.5" dependencies = [ "opy-macro-js", "opy-rs", @@ -390,7 +390,7 @@ dependencies = [ [[package]] name = "opy-macro-js" -version = "0.1.4" +version = "0.1.5" dependencies = [ "libquickjs-ng-sys", "serde_json", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "opy-rs" -version = "0.1.4" +version = "0.1.5" dependencies = [ "opy-macro-js", "serde", diff --git a/Cargo.toml b/Cargo.toml index fc730f5..6b182a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,14 +3,14 @@ members = ["crates/*"] resolver = "3" [workspace.package] -version = "0.1.4" +version = "0.1.5" edition = "2024" rust-version = "1.85.0" license = "AGPL-3.0-or-later" repository = "https://github.com/wrightkit/opy-rs" [workspace.dependencies] -opy-rs = { path = "crates/opy-rs", version = "0.1.4" } +opy-rs = { path = "crates/opy-rs", version = "0.1.5" } serde = "1" serde_json = "1" workshop-rs = "=0.1.11" diff --git a/crates/opy-cli/CHANGELOG.md b/crates/opy-cli/CHANGELOG.md index 44a0600..50cd9bf 100644 --- a/crates/opy-cli/CHANGELOG.md +++ b/crates/opy-cli/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/wrightkit/opy-rs/compare/opy-cli-v0.1.4...opy-cli-v0.1.5) - 2026-08-29 + +### Added + +- *(compiler)* expose versioned OPY compile surface + +### Fixed + +- *(compatibility)* isolate evidence harness +- *(compiler)* make compatibility evidence executable + ## [0.1.1](https://github.com/wrightkit/opy-rs/compare/opy-cli-v0.1.0...opy-cli-v0.1.1) - 2026-08-27 ### Added diff --git a/crates/opy-cli/Cargo.toml b/crates/opy-cli/Cargo.toml index 110d81e..7a29bd4 100644 --- a/crates/opy-cli/Cargo.toml +++ b/crates/opy-cli/Cargo.toml @@ -21,7 +21,7 @@ workspace = true clap = { version = "4.5", features = ["derive"] } clap_complete = "4.5" opy-rs.workspace = true -opy-compiler = { path = "../opy-compiler", version = "0.1.3" } +opy-compiler = { path = "../opy-compiler", version = "0.1.5" } serde = { workspace = true, features = ["derive"] } serde_json.workspace = true workshop-rs.workspace = true diff --git a/crates/opy-compiler/CHANGELOG.md b/crates/opy-compiler/CHANGELOG.md index aaf0e99..a1fb4e3 100644 --- a/crates/opy-compiler/CHANGELOG.md +++ b/crates/opy-compiler/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/wrightkit/opy-rs/compare/opy-compiler-v0.1.4...opy-compiler-v0.1.5) - 2026-08-29 + +### Fixed + +- *(compatibility)* retain compile report serialization + +### Other + +- Merge remote-tracking branch 'origin/main' into codex/issue-38-compile + ## [0.1.4](https://github.com/wrightkit/opy-rs/compare/opy-compiler-v0.1.3...opy-compiler-v0.1.4) - 2026-08-29 ### Fixed diff --git a/crates/opy-compiler/Cargo.toml b/crates/opy-compiler/Cargo.toml index c5a7f8a..c4da784 100644 --- a/crates/opy-compiler/Cargo.toml +++ b/crates/opy-compiler/Cargo.toml @@ -11,7 +11,7 @@ workspace = true [dependencies] opy-rs.workspace = true -opy-macro-js = { path = "../opy-macro-js", version = "0.1.4" } +opy-macro-js = { path = "../opy-macro-js", version = "0.1.5" } serde.workspace = true workshop-rs.workspace = true diff --git a/crates/opy-rs/CHANGELOG.md b/crates/opy-rs/CHANGELOG.md index c4dd637..af119d6 100644 --- a/crates/opy-rs/CHANGELOG.md +++ b/crates/opy-rs/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.5](https://github.com/wrightkit/opy-rs/compare/v0.1.4...v0.1.5) - 2026-08-29 + +### Other + +- Merge remote-tracking branch 'origin/main' into codex/issue-38-compile + ## [0.1.3](https://github.com/wrightkit/opy-rs/compare/v0.1.2...v0.1.3) - 2026-08-28 ### Added diff --git a/crates/opy-rs/Cargo.toml b/crates/opy-rs/Cargo.toml index 01b79bd..c450b73 100644 --- a/crates/opy-rs/Cargo.toml +++ b/crates/opy-rs/Cargo.toml @@ -10,7 +10,7 @@ description = "Standalone OverPy-compatible .opy implementation: lexer, CST/pars workspace = true [dependencies] -opy-macro-js = { path = "../opy-macro-js", version = "0.1.4" } +opy-macro-js = { path = "../opy-macro-js", version = "0.1.5" } serde = { workspace = true, features = ["derive"] } serde_json.workspace = true workshop-rs.workspace = true