浏览代码

sbi-spec: prepare for release version 0.0.7

Signed-off-by: Zhouqi Jiang <[email protected]>
Zhouqi Jiang 1 年之前
父节点
当前提交
1456001fed
共有 5 个文件被更改,包括 10 次插入9 次删除
  1. 1 1
      Cargo.toml
  2. 4 4
      sbi-rt/Cargo.toml
  3. 2 1
      sbi-spec/CHANGELOG.md
  4. 2 2
      sbi-spec/Cargo.toml
  5. 1 1
      sbi-testing/Cargo.toml

+ 1 - 1
Cargo.toml

@@ -17,7 +17,7 @@ categories = ["os", "embedded", "hardware-support", "no-std"]
 exclude = ["/.github"]
 
 [dependencies]
-sbi-spec = { version = "0.0.7-alpha.3", path = "sbi-spec" }
+sbi-spec = { version = "0.0.7", path = "sbi-spec" }
 riscv = { version = "0.11.0", optional = true }
 sbi-rt = { version = "0.0.3-rc.5", features = ["integer-impls"], optional = true, path = "sbi-rt" }
 rustsbi-macros = { version = "0.0.0", path = "macros" }

+ 4 - 4
sbi-rt/Cargo.toml

@@ -21,15 +21,15 @@ targets = [
 ]
 
 [dependencies]
-sbi-spec = { version = "0.0.7-alpha.3", path = "../sbi-spec" }
+sbi-spec = { version = "0.0.7", path = "../sbi-spec" }
 
 [features]
 default = []
 # Implement sbi-rt traits for integer types
-# By using this feature, parameter types of sbi-rt functions fall back to integers,
-# static type checks are disabled so this library won't detect parameters in incorrect orders.
+# By using this feature, parameter types of sbi-rt functions fall back to integers;
+# static type checks are disabled, so this library won't detect parameters in incorrect orders.
 # Although some people may find it useful in prototyping sbi-rt implementations,
 # users of this crate are strongly encouraged not to enable this feature in production.
 integer-impls = []
-# Support legacy extension; this feature is not included by default.
+# Support for the legacy extension; this feature is not included by default.
 legacy = ["sbi-spec/legacy"]

+ 2 - 1
sbi-spec/CHANGELOG.md

@@ -12,7 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 
 ### Fixed
 
-## [0.0.7] - 2023-12-08
+## [0.0.7] - 2024-02-05
 
 `sbi-spec` crate now supports RISC-V SBI version 2.0 ratified.
 
@@ -34,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 
 - Remove redundant prefixes in `PMU`
 - Add new function id `SNAPSHOT_SET_SHMEM` in `PMU`
+- Grammar fixes on documents
 
 ## [0.0.6] - 2023-04-04
 

+ 2 - 2
sbi-spec/Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "sbi-spec"
 description = "Definitions and constants in RISC-V Supervisor Binary Interface (RISC-V SBI)"
-version = "0.0.7-alpha.3"
+version = "0.0.7"
 authors = ["YdrMaster <[email protected]>", "Luo Jia <[email protected]>"]
 documentation = "https://docs.rs/sbi-spec"
 edition.workspace = true
@@ -16,5 +16,5 @@ static_assertions = "1.1.0"
 
 [features]
 default = []
-# Support legacy extension; this feature is not included by default.
+# Support for the legacy extension; this feature is not included by default.
 legacy = []

+ 1 - 1
sbi-testing/Cargo.toml

@@ -19,7 +19,7 @@ targets = ["riscv32imac-unknown-none-elf", "riscv64imac-unknown-none-elf"]
 
 [dependencies]
 sbi-rt = { version = "0.0.3-rc.5", path = "../sbi-rt" }
-sbi-spec = { version = "0.0.7-alpha.3", path = "../sbi-spec" }
+sbi-spec = { version = "0.0.7", path = "../sbi-spec" }
 riscv = "0.11.0"
 log_crate = { version = "0.4", package = "log", optional = true }