Browse Source

crate: prepare release candidate v0.3.2-rc.1

luojia65 2 years ago
parent
commit
7118c8cb2a
3 changed files with 15 additions and 8 deletions
  1. 10 3
      CHANGELOG.md
  2. 1 1
      Cargo.toml
  3. 4 4
      src/lib.rs

+ 10 - 3
CHANGELOG.md

@@ -7,6 +7,14 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ## Unreleased
 
+### Added
+
+### Modified
+
+### Removed
+
+## [0.3.2] - 2023-02-20
+
 Bump RISC-V SBI specification version to 2.0-rc1.
 
 ### Added
@@ -19,8 +27,6 @@ Bump RISC-V SBI specification version to 2.0-rc1.
 
 - doc: amend using SBI 2.0-rc1 specification
 
-### Removed
-
 ## [0.3.1] - 2023-01-20
 
 ### Modified
@@ -171,7 +177,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.1...HEAD
+[Unreleased]: https://github.com/rustsbi/rustsbi/compare/v0.3.2...HEAD
+[0.3.2]: https://github.com/rustsbi/rustsbi/compare/v0.3.1...v0.3.2
 [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

+ 1 - 1
Cargo.toml

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

+ 4 - 4
src/lib.rs

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