Skip to content

Commit 3cfade5

Browse files
Merge pull request #174 from rust-embedded/release
Release new versions
2 parents c0ce676 + 3384fc8 commit 3cfade5

File tree

9 files changed

+17
-8
lines changed

9 files changed

+17
-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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## [v0.1.0] - 2023-01-18
9+
810
- Add recommendation for `semihosting` in README.md.
911
- Bug fixes
1012
- 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-semihosting/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ pub unsafe fn syscall1(_nr: usize, _arg: usize) -> usize {
216216
#[cfg(all(riscv, not(feature = "no-semihosting")))]
217217
() => {
218218
let mut nr = _nr;
219-
let mut arg = _arg;
219+
let arg = _arg;
220220
// The instructions below must always be uncompressed, otherwise
221221
// it will be treated as a regular break, hence the norvc option.
222222
//

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)