Skip to content

Commit edf0387

Browse files
committed
release v0.10.0
1 parent e53deef commit edf0387

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

riscv-rt/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
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.10.0] - 2022-11-04
11+
1012
### Added
1113

1214
- Optional cargo feature `s-mode` for supervisor mode, including conditional compilation for supervisor/machine mode instructions.
@@ -15,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1517

1618
- Remove superfluous parentheses from link.x, which caused linker errors with nightly.
1719
- Changed `mp_hook` signature, hartid as passed as usize parameter by the caller (required for `s-mode` feature).
20+
- Update `riscv` to version 0.9
1821

1922
## [v0.9.0] - 2022-07-01
2023

@@ -91,7 +94,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9194
- Set MSRV to 1.38
9295

9396

94-
[Unreleased]: https://github.com/rust-embedded/riscv-rt/compare/v0.9.0..HEAD
97+
[Unreleased]: https://github.com/rust-embedded/riscv-rt/compare/v0.10.0..HEAD
98+
[v0.10.0]: https://github.com/rust-embedded/riscv-rt/compare/v0.9.1...v0.10.0
9599
[v0.9.0]: https://github.com/rust-embedded/riscv-rt/compare/v0.8.1...v0.9.0
96100
[v0.8.1]: https://github.com/rust-embedded/riscv-rt/compare/v0.8.0...v0.8.1
97101
[v0.8.0]: https://github.com/rust-embedded/riscv-rt/compare/v0.7.2...v0.8.0

riscv-rt/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "riscv-rt"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
rust-version = "1.59"
55
repository = "https://github.com/rust-embedded/riscv-rt"
66
authors = ["The RISC-V Team <[email protected]>"]
@@ -15,7 +15,7 @@ s-mode = []
1515

1616
[dependencies]
1717
r0 = "1.0.0"
18-
riscv = "0.8"
18+
riscv = "0.9"
1919
riscv-rt-macros = { path = "macros", version = "0.2.0" }
2020

2121
[dev-dependencies]

0 commit comments

Comments
 (0)