diff --git a/riscv-pac/CHANGELOG.md b/riscv-pac/CHANGELOG.md index 969e9b32..9dcfcd6a 100644 --- a/riscv-pac/CHANGELOG.md +++ b/riscv-pac/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.2.0] - 2024-10-19 + ### Added - Add `result` module for `Error` and `Result` types diff --git a/riscv-peripheral/CHANGELOG.md b/riscv-peripheral/CHANGELOG.md index e4703980..b573934d 100644 --- a/riscv-peripheral/CHANGELOG.md +++ b/riscv-peripheral/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.2.0] - 2024-10-19 + ### Added - use `riscv-pac` result types for trait implementations diff --git a/riscv-rt/CHANGELOG.md b/riscv-rt/CHANGELOG.md index 659ded45..3f5a0ef0 100644 --- a/riscv-rt/CHANGELOG.md +++ b/riscv-rt/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.13.0] - 2024-10-19 + ### Added - Add integration tests to check that macros work as expected. diff --git a/riscv-rt/Cargo.toml b/riscv-rt/Cargo.toml index 245aa565..2cc835d3 100644 --- a/riscv-rt/Cargo.toml +++ b/riscv-rt/Cargo.toml @@ -22,7 +22,7 @@ targets = [ [dependencies] riscv = { path = "../riscv", version = "0.12.0" } riscv-pac = { path = "../riscv-pac", version = "0.2.0" } -riscv-rt-macros = { path = "macros", version = "0.2.1" } +riscv-rt-macros = { path = "macros", version = "0.2.2" } [dev-dependencies] panic-halt = "0.2.0" diff --git a/riscv-rt/macros/Cargo.toml b/riscv-rt/macros/Cargo.toml index c842c4d6..f856c7b8 100644 --- a/riscv-rt/macros/Cargo.toml +++ b/riscv-rt/macros/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["riscv", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "riscv-rt-macros" repository = "https://github.com/rust-embedded/riscv" -version = "0.2.1" +version = "0.2.2" edition = "2021" [lib] diff --git a/riscv-semihosting/CHANGELOG.md b/riscv-semihosting/CHANGELOG.md index 80e008a3..41a2e1e3 100644 --- a/riscv-semihosting/CHANGELOG.md +++ b/riscv-semihosting/CHANGELOG.md @@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.1.1] - 2024-10-19 + ### Changed - Apply clippy changes diff --git a/riscv-semihosting/Cargo.toml b/riscv-semihosting/Cargo.toml index 4163186e..31eb61fa 100644 --- a/riscv-semihosting/Cargo.toml +++ b/riscv-semihosting/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "riscv-semihosting" readme = "README.md" repository = "https://github.com/riscv-rust/riscv" -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.60.0" diff --git a/riscv/CHANGELOG.md b/riscv/CHANGELOG.md index 04080506..d4631063 100644 --- a/riscv/CHANGELOG.md +++ b/riscv/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.12.0] - 2024-10-19 + ### Added - `riscv-macros` crate for `riscv-pac` enums.