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
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
11 changes: 11 additions & 0 deletions crates/opy-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/opy-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 10 additions & 0 deletions crates/opy-compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/opy-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions crates/opy-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/opy-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading