Skip to content

Commit 89a632f

Browse files
committed
Merge branch 'master' into add-peripheral
2 parents e29948c + 3cfade5 commit 89a632f

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

riscv-pac/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.1.0] - 2024-01-14
11+
1012
### Added
1113

1214
- Add `InterruptNumber`, `PriorityNumber`, and `HartIdNumber` traits.

riscv-rt/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
11+
## [v0.12.0] - 2024-01-14
12+
1013
### Added
1114

1215
- Add `links` field in `Cargo.toml`

riscv-rt/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv-rt"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
rust-version = "1.60"
55
repository = "https://github.com/rust-embedded/riscv"
66
authors = ["The RISC-V Team <[email protected]>"]
@@ -17,8 +17,8 @@ s-mode = []
1717
single-hart = []
1818

1919
[dependencies]
20-
riscv = {path = "../riscv", version = "0.10"}
21-
riscv-rt-macros = { path = "macros", version = "0.2.0" }
20+
riscv = {path = "../riscv", version = "0.11.0"}
21+
riscv-rt-macros = { path = "macros", version = "0.2.1" }
2222

2323
[dev-dependencies]
2424
panic-halt = "0.2.0"

riscv-rt/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["riscv", "runtime", "startup"]
1010
license = "MIT OR Apache-2.0"
1111
name = "riscv-rt-macros"
1212
repository = "https://github.com/rust-embedded/riscv"
13-
version = "0.2.0"
13+
version = "0.2.1"
1414

1515
[lib]
1616
proc-macro = true

riscv-semihosting/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8-
- Address clippy warnings
8+
## [v0.1.0] - 2023-01-18
9+
910
- Add recommendation for `semihosting` in README.md.
1011
- Bug fixes
1112
- Moved to the `riscv` Cargo workspace

riscv-semihosting/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"
1212
name = "riscv-semihosting"
1313
readme = "README.md"
1414
repository = "https://github.com/riscv-rust/riscv"
15-
version = "0.0.1"
15+
version = "0.1.0"
1616
edition = "2021"
1717
rust-version = "1.60.0"
1818

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

2525
[dependencies]
2626
critical-section = "1.0.0"
27-
riscv = { path = "../riscv", version = "0.10.1" }
27+
riscv = { path = "../riscv", version = "0.11.0" }

riscv/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.11.0] - 2024-01-14
11+
1012
### Added
1113

1214
- Add `asm::ecall()`, a wrapper for implementing an `ecall` instruction

riscv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv"
3-
version = "0.10.1"
3+
version = "0.11.0"
44
edition = "2021"
55
rust-version = "1.60"
66
repository = "https://github.com/rust-embedded/riscv"

0 commit comments

Comments
 (0)