diff --git a/Cargo.lock b/Cargo.lock index 0ee134f..496f45d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -366,7 +366,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "opy-cli" -version = "0.1.10" +version = "0.1.11" dependencies = [ "clap", "clap_complete", @@ -378,7 +378,7 @@ dependencies = [ [[package]] name = "opy-rs" -version = "0.1.10" +version = "0.1.11" dependencies = [ "libquickjs-ng-sys", "serde", diff --git a/Cargo.toml b/Cargo.toml index a0fd9fa..6b28ceb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,14 +3,14 @@ members = ["crates/opy-rs", "crates/opy-cli"] resolver = "3" [workspace.package] -version = "0.1.10" +version = "0.1.11" 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.10" } +opy-rs = { path = "crates/opy-rs", version = "0.1.11" } libquickjs-ng-sys = "0.13.0" serde = "1" serde_json = "1" diff --git a/crates/opy-cli/CHANGELOG.md b/crates/opy-cli/CHANGELOG.md index 8a16af2..0158274 100644 --- a/crates/opy-cli/CHANGELOG.md +++ b/crates/opy-cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/wrightkit/opy-rs/compare/opy-cli-v0.1.10...opy-cli-v0.1.11) - 2026-08-31 + +### Added + +- *(opy)* complete audited statement grammar surface ([#146](https://github.com/wrightkit/opy-rs/pull/146)) + ## [0.1.7](https://github.com/wrightkit/opy-rs/compare/opy-cli-v0.1.6...opy-cli-v0.1.7) - 2026-08-30 ### Other diff --git a/crates/opy-rs/CHANGELOG.md b/crates/opy-rs/CHANGELOG.md index 6e4cc9b..400bc59 100644 --- a/crates/opy-rs/CHANGELOG.md +++ b/crates/opy-rs/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.11](https://github.com/wrightkit/opy-rs/compare/v0.1.10...v0.1.11) - 2026-08-31 + +### Added + +- *(opy)* complete semantic HIR subroutine resolution +- *(opy)* complete preprocessing, macros, and project composition ([#147](https://github.com/wrightkit/opy-rs/pull/147)) +- *(opy)* complete audited statement grammar surface ([#146](https://github.com/wrightkit/opy-rs/pull/146)) + +### Fixed + +- *(opy)* preserve top-level semantic order + +### Other + +- Merge pull request #149 from wrightkit/codex/issue-143-semantic-hir + ## [0.1.10](https://github.com/wrightkit/opy-rs/compare/v0.1.9...v0.1.10) - 2026-08-31 ### Added