Skip to content

Commit

Permalink
Merge pull request #269 from rust-embedded/release
Browse files Browse the repository at this point in the history
Prepare for new release
  • Loading branch information
romancardenas authored Feb 18, 2025
2 parents dcc43ca + 10066d3 commit 6b57558
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 13 deletions.
6 changes: 6 additions & 0 deletions riscv-peripheral/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](http://semver.org/).

## [Unreleased]

## [v0.2.1] - 2025-02-18

### Changed

- Update `riscv` dependency to 0.13.0

## [v0.2.0] - 2024-10-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions riscv-peripheral/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "riscv-peripheral"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
rust-version = "1.75"
repository = "https://github.com/rust-embedded/riscv"
Expand All @@ -16,7 +16,7 @@ license = "ISC"
[dependencies]
embedded-hal = "1.0.0"
embedded-hal-async = { version = "1.0.0", optional = true }
riscv = { path = "../riscv", version = "0.12.0" }
riscv = { path = "../riscv", version = "0.13.0" }
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }

[dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions riscv-rt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.14.0] - 2025-02-18

### Changed

- Use `RISCV_MTVEC_ALIGN` to control the alignment constraint of the vector table.
Expand Down
6 changes: 3 additions & 3 deletions riscv-rt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "riscv-rt"
version = "0.13.0"
version = "0.14.0"
rust-version = "1.61"
repository = "https://github.com/rust-embedded/riscv"
authors = ["The RISC-V Team <[email protected]>"]
Expand All @@ -23,9 +23,9 @@ targets = [
riscv-target-parser = { path = "../riscv-target-parser", version = "0.1.0" }

[dependencies]
riscv = { path = "../riscv", version = "0.12.0" }
riscv = { path = "../riscv", version = "0.13.0" }
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }
riscv-rt-macros = { path = "macros", version = "0.3.0" }
riscv-rt-macros = { path = "macros", version = "0.4.0" }

[dev-dependencies]
panic-halt = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion riscv-rt/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0"
version = "0.4.0"
edition = "2021"

[lib]
Expand Down
6 changes: 6 additions & 0 deletions riscv-semihosting/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.1.3] - 2025-02-18

### Changed

- Update riscv to 0.13.0

## [v0.1.2] - 2024-10-20

### Changed
Expand Down
4 changes: 2 additions & 2 deletions riscv-semihosting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
version = "0.1.3"
edition = "2021"
rust-version = "1.60.0"

Expand All @@ -24,4 +24,4 @@ default = ["jlink-quirks"]

[dependencies]
critical-section = "1.2.0"
riscv = { path = "../riscv", version = "0.12.1" }
riscv = { path = "../riscv", version = "0.13.0" }
5 changes: 5 additions & 0 deletions riscv-target-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.1.0] - 2025-02-18

### Added

- First release.
2 changes: 2 additions & 0 deletions riscv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.13.0] - 2025-02-18

### Added

- CSR helper macro to check for platform implementation
Expand Down
4 changes: 2 additions & 2 deletions riscv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "riscv"
version = "0.12.1"
version = "0.13.0"
edition = "2021"
rust-version = "1.61"
repository = "https://github.com/rust-embedded/riscv"
Expand Down Expand Up @@ -28,5 +28,5 @@ critical-section-single-hart = ["critical-section/restore-state-bool"]
critical-section = "1.2.0"
embedded-hal = "1.0.0"
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }
riscv-macros = { path = "macros", version = "0.1.0", optional = true }
riscv-macros = { path = "macros", version = "0.2.0", optional = true }
paste = "1.0.15"
2 changes: 1 addition & 1 deletion riscv/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["riscv", "register", "peripheral"]
license = "MIT OR Apache-2.0"
name = "riscv-macros"
repository = "https://github.com/rust-embedded/riscv"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[lib]
Expand Down
4 changes: 2 additions & 2 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2021"

[dependencies]
riscv = { path = "../riscv", version = "0.12.0" }
riscv-rt = { path = "../riscv-rt", version = "0.13.0", features = ["no-exceptions", "no-interrupts"]}
riscv = { path = "../riscv", version = "0.13.0" }
riscv-rt = { path = "../riscv-rt", version = "0.14.0", features = ["no-exceptions", "no-interrupts"]}
trybuild = "1.0"

0 comments on commit 6b57558

Please sign in to comment.