Pārlūkot izejas kodu

spec: prepare for release version 0.0.8-rc.1

Signed-off-by: Zhouqi Jiang <luojia@hust.edu.cn>
Zhouqi Jiang 5 mēneši atpakaļ
vecāks
revīzija
1e08efedcb
4 mainītis faili ar 4 papildinājumiem un 4 dzēšanām
  1. 1 1
      Cargo.toml
  2. 1 1
      sbi-rt/Cargo.toml
  3. 1 1
      sbi-spec/Cargo.toml
  4. 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", path = "sbi-spec" }
+sbi-spec = { version = "0.0.8-rc.1", path = "sbi-spec" }
 riscv = { version = "0.12.0", optional = true, default-features = false }
 sbi-rt = { version = "0.0.3", features = ["integer-impls"], optional = true, path = "sbi-rt" }
 rustsbi-macros = { version = "0.0.2", path = "macros" }

+ 1 - 1
sbi-rt/Cargo.toml

@@ -21,7 +21,7 @@ targets = [
 ]
 
 [dependencies]
-sbi-spec = { version = "0.0.7", path = "../sbi-spec" }
+sbi-spec = { version = "0.0.8-rc.1", path = "../sbi-spec" }
 
 [features]
 default = []

+ 1 - 1
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"
+version = "0.0.8-rc.1"
 authors = ["YdrMaster <ydrml@hotmail.com>", "Luo Jia <me@luojia.cc>"]
 documentation = "https://docs.rs/sbi-spec"
 edition.workspace = true

+ 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", path = "../sbi-rt" }
-sbi-spec = { version = "0.0.7", path = "../sbi-spec" }
+sbi-spec = { version = "0.0.8-rc.1", path = "../sbi-spec" }
 riscv = { version = "0.12.0", default-features = false }
 log = { version = "0.4", package = "log", optional = true }