فهرست منبع

spec: prepare to release `sbi-spec` version 0.0.8

Signed-off-by: Zhouqi Jiang <luojia@hust.edu.cn>
Zhouqi Jiang 5 ماه پیش
والد
کامیت
0837da8fc3
5فایلهای تغییر یافته به همراه13 افزوده شده و 5 حذف شده
  1. 1 1
      Cargo.toml
  2. 1 1
      sbi-rt/Cargo.toml
  3. 8 0
      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.8-rc.1", path = "sbi-spec" }
+sbi-spec = { version = "0.0.8", 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.8-rc.1", path = "../sbi-spec" }
+sbi-spec = { version = "0.0.8", path = "../sbi-spec" }
 
 [features]
 default = []

+ 8 - 0
sbi-spec/CHANGELOG.md

@@ -8,6 +8,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 
 ### Added
 
+### Modified
+
+### Fixed
+
+## [0.0.8] - 2024-10-25
+
+### Added
+
 - base: add Coreboot and Oreboot to `impl_id` module
 - binary: add counter index mask type ([#71](https://github.com/rustsbi/rustsbi/pull/71))
 - pmu: add `shmem_size` module for PMU snapshot shared memory, add unit test for `pmu::shmem_size::SIZE`

+ 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.8-rc.1"
+description = "Definitions and constants in the RISC-V Supervisor Binary Interface (RISC-V SBI)"
+version = "0.0.8"
 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.8-rc.1", path = "../sbi-spec" }
+sbi-spec = { version = "0.0.8", path = "../sbi-spec" }
 riscv = { version = "0.12.0", default-features = false }
 log = { version = "0.4", package = "log", optional = true }