Browse Source

RustSBI version 0.1.0

luojia65 4 years ago
parent
commit
c72b2fa504
2 changed files with 5 additions and 4 deletions
  1. 4 3
      CHANGELOG.md
  2. 1 1
      rustsbi/Cargo.toml

+ 4 - 3
CHANGELOG.md

@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ## [0.1.0] - 2020-12-26
 RustSBI is adapted to SBI standard with implementation number 4.
 ### Added
+- Implementation specific SBI module `0x0A000004` defined
 - K210 specific sbi_rustsbi_k210_sext SBI call
 
 ### Modified
@@ -25,6 +26,6 @@ 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/olivierlacan/keep-a-changelog/compare/v0.1.0...HEAD
-[0.1.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.0.1...v0.1.0
-[0.0.2]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.0.2
+[Unreleased]: https://github.com/luojia65/rustsbi/compare/v0.1.0...HEAD
+[0.1.0]: https://github.com/luojia65/rustsbi/compare/v0.0.2...v0.1.0
+[0.0.2]: https://github.com/luojia65/rustsbi/releases/tag/v0.0.2

+ 1 - 1
rustsbi/Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "rustsbi"
 description = "Minimal RISC-V's SBI implementation library in Rust"
-version = "0.0.2"
+version = "0.1.0"
 authors = ["luojia65 <[email protected]>"]
 repository = "https://github.com/luojia65/rustsbi"
 documentation = "https://docs.rs/rustsbi"