Skip to content

Commit c2d70e3

Browse files
committed
riscv-peripheral v0.4.0
1 parent eea5c93 commit c2d70e3

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

riscv-peripheral/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.4.0] - 2025-09-04
11+
1012
### Added
1113

1214
- Constant methods to access to PLIC and ACLINT registers for HART 0.
1315
These new methods are especially convenient for single-HART targets.
1416

17+
### Removed
18+
19+
- Removed `riscv` reexport.
20+
1521
## [v0.3.0] - 2025-06-10
1622

1723
### Changed

riscv-peripheral/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-peripheral"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.75"
66
repository = "https://github.com/rust-embedded/riscv"
@@ -16,7 +16,7 @@ license = "ISC"
1616
[dependencies]
1717
embedded-hal = "1.0.0"
1818
paste = "1.0"
19-
riscv = { path = "../riscv", version = "0.14.0" }
19+
riscv = { path = "../riscv", version = "0.15.0" }
2020
riscv-pac = { path = "../riscv-pac", version = "0.2.0" }
2121

2222
[package.metadata.docs.rs]

riscv-peripheral/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![deny(missing_docs)]
44
#![no_std]
55

6-
pub use riscv; // re-export riscv crate to allow macros to use it
76
pub use riscv_pac::result; // re-export the result module
87

98
pub mod common; // common definitions for all peripherals

0 commit comments

Comments
 (0)