Browse Source

crate: prepare for version 0.3.1

luojia65 2 years ago
parent
commit
a4686517b1
3 changed files with 14 additions and 8 deletions
  1. 9 3
      CHANGELOG.md
  2. 1 1
      Cargo.toml
  3. 4 4
      src/lib.rs

+ 9 - 3
CHANGELOG.md

@@ -11,10 +11,15 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ### Modified
 
-- Use let-else to simplify code, bump MSRV to 1.65.0
-
 ### Removed
 
+## [0.3.1] - 2023-01-20
+
+### Modified
+
+- Update dependency crate `riscv` to version 0.10.1
+- Use let-else to simplify code, bump MSRV to 1.65.0
+
 ## [0.3.0] - 2022-11-03
 
 ### Added
@@ -158,7 +163,8 @@ RustSBI is adapted to SBI standard with implementation number 4.
 - RISC-V Privileged Specification v1.11
 - Backward compatible to privileged spec v1.9.1
 
-[Unreleased]: https://github.com/rustsbi/rustsbi/compare/v0.3.0...HEAD
+[Unreleased]: https://github.com/rustsbi/rustsbi/compare/v0.3.1...HEAD
+[0.3.1]: https://github.com/rustsbi/rustsbi/compare/v0.3.0...v0.3.1
 [0.3.0]: https://github.com/rustsbi/rustsbi/compare/v0.2.2...v0.3.0
 [0.2.2]: https://github.com/rustsbi/rustsbi/compare/v0.2.1...v0.2.2
 [0.2.1]: https://github.com/rustsbi/rustsbi/compare/v0.2.0...v0.2.1

+ 1 - 1
Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "rustsbi"
 description = "Minimal RISC-V's SBI implementation library in Rust"
-version = "0.3.0"
+version = "0.3.1"
 authors = [
     "Luo Jia <[email protected]>",
     "Campbell He <[email protected]>",

+ 4 - 4
src/lib.rs

@@ -148,7 +148,7 @@
 //!
 //! ```toml
 //! [dependencies]
-//! rustsbi = "0.3.0"
+//! rustsbi = "0.3.1"
 //! ```
 //!
 //! After hardware initialization process, the part of firmware with RustSBI linked should run on memory
@@ -356,7 +356,7 @@
 //!
 //! ```toml
 //! [dependencies]
-//! rustsbi = { version = "0.3.0", features = ["singleton"] }
+//! rustsbi = { version = "0.3.1", features = ["singleton"] }
 //! ```
 //!
 //! RustSBI library will disable all instance based interfaces but provide `init_*`
@@ -388,7 +388,7 @@
 //!
 //! ```toml
 //! [dependencies]
-//! rustsbi = { version = "0.3.0", default-features = false }
+//! rustsbi = { version = "0.3.1", default-features = false }
 //! ```
 //!
 //! This will disable default feature `machine` which will assume that RustSBI runs on M-mode directly,
@@ -536,7 +536,7 @@
 //!
 //! ```toml
 //! [dependencies]
-//! rustsbi = { version = "0.3.0", features = ["legacy"] }
+//! rustsbi = { version = "0.3.1", features = ["legacy"] }
 //! ```
 
 #![no_std]