Bump version to 0.14.0

This commit is contained in:
Ruihan Li
2025-03-17 13:32:48 +08:00
committed by Tate, Hongliang Tian
parent 32ffdee37b
commit 6476ef22ec
25 changed files with 58 additions and 58 deletions

4
osdk/Cargo.lock generated
View File

@ -181,7 +181,7 @@ dependencies = [
[[package]]
name = "cargo-osdk"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"assert_cmd",
"chrono",
@ -577,7 +577,7 @@ dependencies = [
[[package]]
name = "linux-bzimage-builder"
version = "0.13.0"
version = "0.14.0"
dependencies = [
"align_ext",
"bitflags 1.3.2",

View File

@ -1,6 +1,6 @@
[package]
name = "cargo-osdk"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
description = "Accelerate OS development with Asterinas OSDK"
license = "MPL-2.0"
@ -10,7 +10,7 @@ repository = "https://github.com/asterinas/asterinas"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
linux-bzimage-builder = { version = "0.13.0", path = "../ostd/libs/linux-bzimage/builder" }
linux-bzimage-builder = { version = "0.14.0", path = "../ostd/libs/linux-bzimage/builder" }
clap = { version = "4.4.17", features = ["cargo", "derive"] }
chrono = "0.4.38"
env_logger = "0.11.0"

View File

@ -1,6 +1,6 @@
[package]
name = "osdk-frame-allocator"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
description = "The default buddy system frame allocator shipped with OSDK."
license = "MPL-2.0"
@ -9,7 +9,7 @@ readme = "README.md"
[dependencies]
log = "0.4"
ostd = { version = "0.13.0", path = "../../../ostd" }
ostd = { version = "0.14.0", path = "../../../ostd" }
[lints]
workspace = true

View File

@ -1,6 +1,6 @@
[package]
name = "osdk-heap-allocator"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
description = "The default slab-based heap allocator shipped with OSDK."
license = "MPL-2.0"
@ -9,7 +9,7 @@ readme = "README.md"
[dependencies]
log = "0.4"
ostd = { version = "0.13.0", path = "../../../ostd" }
ostd = { version = "0.14.0", path = "../../../ostd" }
[lints]
workspace = true

View File

@ -1,6 +1,6 @@
[package]
name = "osdk-test-kernel"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
description = "The OSTD-based kernel for running unit tests with OSDK."
license = "MPL-2.0"
@ -10,7 +10,7 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ostd = { version = "0.13.0", path = "../../../ostd" }
ostd = { version = "0.14.0", path = "../../../ostd" }
owo-colors = "4.0.0"
[lints]