diff --git a/Cargo.lock b/Cargo.lock index 6c6cfd9..208cb3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -594,7 +594,7 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "vihaco" -version = "0.1.1" +version = "0.2.0" dependencies = [ "byteorder", "chumsky", @@ -612,7 +612,7 @@ dependencies = [ [[package]] name = "vihaco-cpu" -version = "0.1.1" +version = "0.2.0" dependencies = [ "chumsky", "codespan", @@ -626,7 +626,7 @@ dependencies = [ [[package]] name = "vihaco-derive" -version = "0.1.1" +version = "0.2.0" dependencies = [ "convert_case", "proc-macro2", @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "vihaco-doctests" -version = "0.1.1" +version = "0.2.0" dependencies = [ "chumsky", "eyre", @@ -649,7 +649,7 @@ dependencies = [ [[package]] name = "vihaco-parser" -version = "0.1.1" +version = "0.2.0" dependencies = [ "chumsky", "proc-macro2", @@ -661,7 +661,7 @@ dependencies = [ [[package]] name = "vihaco-parser-core" -version = "0.1.1" +version = "0.2.0" dependencies = [ "chumsky", ] diff --git a/Cargo.toml b/Cargo.toml index ff59b82..32dfb77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ ] [workspace.package] -version = "0.1.1" +version = "0.2.0" license = "MIT" repository = "https://github.com/QuEraComputing/vihaco" authors = [ @@ -20,8 +20,8 @@ authors = [ ] [workspace.dependencies] -vihaco = { version = "0.1.1", path = "crates/vihaco" } -vihaco-cpu = { version = "0.1.1", path = "crates/vihaco-cpu" } -vihaco-derive = { version = "0.1.1", path = "crates/vihaco-derive" } -vihaco-parser = { version = "0.1.1", path = "crates/vihaco-parser" } -vihaco-parser-core = { version = "0.1.1", path = "crates/vihaco-parser-core" } +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" } diff --git a/crates/vihaco-cpu/CHANGELOG.md b/crates/vihaco-cpu/CHANGELOG.md index 19560ea..566459f 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.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-cpu-v0.1.1...vihaco-cpu-v0.2.0) - 2026-07-03 + +### Other + +- Multi-section bytecode support ([#31](https://github.com/QuEraComputing/vihaco/pull/31)) + ## [0.1.1](https://github.com/QuEraComputing/vihaco/releases/tag/vihaco-cpu-v0.1.1) - 2026-06-22 ### Other diff --git a/crates/vihaco-derive/CHANGELOG.md b/crates/vihaco-derive/CHANGELOG.md new file mode 100644 index 0000000..19e9bad --- /dev/null +++ b/crates/vihaco-derive/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-derive-v0.1.1...vihaco-derive-v0.2.0) - 2026-07-03 + +### Other + +- Multi-section bytecode support ([#31](https://github.com/QuEraComputing/vihaco/pull/31)) diff --git a/crates/vihaco-parser-core/CHANGELOG.md b/crates/vihaco-parser-core/CHANGELOG.md new file mode 100644 index 0000000..11bddf3 --- /dev/null +++ b/crates/vihaco-parser-core/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] diff --git a/crates/vihaco-parser/CHANGELOG.md b/crates/vihaco-parser/CHANGELOG.md new file mode 100644 index 0000000..11bddf3 --- /dev/null +++ b/crates/vihaco-parser/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] diff --git a/crates/vihaco/CHANGELOG.md b/crates/vihaco/CHANGELOG.md index 5595c0c..4d0244a 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.2.0](https://github.com/QuEraComputing/vihaco/compare/vihaco-v0.1.1...vihaco-v0.2.0) - 2026-07-03 + +### Other + +- Multi-section bytecode support ([#31](https://github.com/QuEraComputing/vihaco/pull/31)) + ## [0.1.1](https://github.com/QuEraComputing/vihaco/releases/tag/vihaco-v0.1.1) - 2026-06-22 ### Other