diff --git a/Cargo.lock b/Cargo.lock index 870a9c5..298ab0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -594,7 +594,7 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "vihaco" -version = "0.2.0" +version = "0.3.0" dependencies = [ "byteorder", "chumsky", @@ -612,7 +612,7 @@ dependencies = [ [[package]] name = "vihaco-cpu" -version = "0.2.0" +version = "0.3.0" dependencies = [ "chumsky", "codespan", @@ -626,7 +626,7 @@ dependencies = [ [[package]] name = "vihaco-derive" -version = "0.2.0" +version = "0.3.0" dependencies = [ "convert_case", "proc-macro2", @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "vihaco-doctests" -version = "0.2.0" +version = "0.3.0" dependencies = [ "chumsky", "eyre", @@ -649,7 +649,7 @@ dependencies = [ [[package]] name = "vihaco-parser" -version = "0.2.0" +version = "0.3.0" dependencies = [ "chumsky", "eyre", @@ -662,7 +662,7 @@ dependencies = [ [[package]] name = "vihaco-parser-core" -version = "0.2.0" +version = "0.3.0" dependencies = [ "byteorder", "chumsky", diff --git a/Cargo.toml b/Cargo.toml index 32dfb77..ab6bc31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.2.0" +version = "0.3.0" license = "MIT" repository = "https://github.com/QuEraComputing/vihaco" authors = [ @@ -20,8 +20,8 @@ authors = [ ] [workspace.dependencies] -vihaco = { version = "0.2.0", path = "crates/vihaco" } -vihaco-cpu = { version = "0.2.0", path = "crates/vihaco-cpu" } -vihaco-derive = { version = "0.2.0", path = "crates/vihaco-derive" } -vihaco-parser = { version = "0.2.0", path = "crates/vihaco-parser" } -vihaco-parser-core = { version = "0.2.0", path = "crates/vihaco-parser-core" } +vihaco = { version = "0.3.0", path = "crates/vihaco" } +vihaco-cpu = { version = "0.3.0", path = "crates/vihaco-cpu" } +vihaco-derive = { version = "0.3.0", path = "crates/vihaco-derive" } +vihaco-parser = { version = "0.3.0", path = "crates/vihaco-parser" } +vihaco-parser-core = { version = "0.3.0", path = "crates/vihaco-parser-core" } diff --git a/crates/vihaco-cpu/CHANGELOG.md b/crates/vihaco-cpu/CHANGELOG.md index 9af18a1..22e3b0c 100644 --- a/crates/vihaco-cpu/CHANGELOG.md +++ b/crates/vihaco-cpu/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-cpu-v0.2.0...vihaco-cpu-v0.3.0) - 2026-07-31 + +### Other + +- Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic `SurfaceInstruction` impl ([#48](https://github.com/QuEraComputing/vihaco/pull/48)) + ## [0.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-cpu-v0.1.1...vihaco-cpu-v0.2.0) - 2026-07-29 ### Other diff --git a/crates/vihaco-parser-core/CHANGELOG.md b/crates/vihaco-parser-core/CHANGELOG.md index 9a63bb9..c1c54a2 100644 --- a/crates/vihaco-parser-core/CHANGELOG.md +++ b/crates/vihaco-parser-core/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-parser-core-v0.2.0...vihaco-parser-core-v0.3.0) - 2026-07-31 + +### Other + +- Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic `SurfaceInstruction` impl ([#48](https://github.com/QuEraComputing/vihaco/pull/48)) + ## [0.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-parser-core-v0.1.1...vihaco-parser-core-v0.2.0) - 2026-07-29 ### Other diff --git a/crates/vihaco-parser/CHANGELOG.md b/crates/vihaco-parser/CHANGELOG.md index cb44374..7fa857b 100644 --- a/crates/vihaco-parser/CHANGELOG.md +++ b/crates/vihaco-parser/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-parser-v0.2.0...vihaco-parser-v0.3.0) - 2026-07-31 + +### Other + +- Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic `SurfaceInstruction` impl ([#48](https://github.com/QuEraComputing/vihaco/pull/48)) + ## [0.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-parser-v0.1.1...vihaco-parser-v0.2.0) - 2026-07-29 ### Other diff --git a/crates/vihaco/CHANGELOG.md b/crates/vihaco/CHANGELOG.md index fb74f65..d52e161 100644 --- a/crates/vihaco/CHANGELOG.md +++ b/crates/vihaco/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-v0.2.0...vihaco-v0.3.0) - 2026-07-31 + +### Other + +- Updated and fixed syntax/parser implementation for missing derives, missing generic type parsing, and automatic `SurfaceInstruction` impl ([#48](https://github.com/QuEraComputing/vihaco/pull/48)) + ## [0.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-v0.1.1...vihaco-v0.2.0) - 2026-07-29 ### Other