Bump the version to 0.14.1

This commit is contained in:
Zhang Junyang 2025-03-22 10:12:39 +08:00 committed by Tate, Hongliang Tian
parent b11427f5c0
commit 5f5be25e4a
13 changed files with 30 additions and 30 deletions

18
Cargo.lock generated
View File

@ -1022,11 +1022,11 @@ dependencies = [
[[package]]
name = "linux-boot-params"
version = "0.14.0"
version = "0.14.1"
[[package]]
name = "linux-bzimage-builder"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"align_ext",
"bitflags 1.3.2",
@ -1038,7 +1038,7 @@ dependencies = [
[[package]]
name = "linux-bzimage-setup"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"cfg-if",
"core2",
@ -1257,7 +1257,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
[[package]]
name = "osdk-frame-allocator"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"log",
"ostd",
@ -1265,7 +1265,7 @@ dependencies = [
[[package]]
name = "osdk-heap-allocator"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"log",
"ostd",
@ -1273,7 +1273,7 @@ dependencies = [
[[package]]
name = "osdk-test-kernel"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"ostd",
"owo-colors 4.1.0",
@ -1281,7 +1281,7 @@ dependencies = [
[[package]]
name = "ostd"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"acpi",
"align_ext",
@ -1319,7 +1319,7 @@ dependencies = [
[[package]]
name = "ostd-macros"
version = "0.14.0"
version = "0.14.1"
dependencies = [
"proc-macro2",
"quote",
@ -1347,7 +1347,7 @@ dependencies = [
[[package]]
name = "ostd-test"
version = "0.14.0"
version = "0.14.1"
[[package]]
name = "owo-colors"

View File

@ -1 +1 @@
0.14.0
0.14.1

4
osdk/Cargo.lock generated
View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "cargo-osdk"
version = "0.14.0"
version = "0.14.1"
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.14.0", path = "../ostd/libs/linux-bzimage/builder" }
linux-bzimage-builder = { version = "0.14.1", 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.14.0"
version = "0.14.1"
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.14.0", path = "../../../ostd" }
ostd = { version = "0.14.1", path = "../../../ostd" }
[lints]
workspace = true

View File

@ -1,6 +1,6 @@
[package]
name = "osdk-heap-allocator"
version = "0.14.0"
version = "0.14.1"
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.14.0", path = "../../../ostd" }
ostd = { version = "0.14.1", path = "../../../ostd" }
[lints]
workspace = true

View File

@ -1,6 +1,6 @@
[package]
name = "osdk-test-kernel"
version = "0.14.0"
version = "0.14.1"
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.14.0", path = "../../../ostd" }
ostd = { version = "0.14.1", path = "../../../ostd" }
owo-colors = "4.0.0"
[lints]

View File

@ -1,6 +1,6 @@
[package]
name = "ostd"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "Rust OS framework that facilitates the development of and innovation in OS kernels"
license = "MPL-2.0"
@ -25,13 +25,13 @@ id-alloc = { path = "libs/id-alloc", version = "0.1.0" }
inherit-methods-macro = { git = "https://github.com/asterinas/inherit-methods-macro", rev = "98f7e3e", version = "0.1.0" }
int-to-c-enum = { path = "../kernel/libs/int-to-c-enum", version = "0.1.0" }
intrusive-collections = { version = "0.9.6", features = ["nightly"] }
linux-boot-params = { version = "0.14.0", path = "libs/linux-bzimage/boot-params" }
linux-boot-params = { version = "0.14.1", path = "libs/linux-bzimage/boot-params" }
log = "0.4"
num = { version = "0.4", default-features = false }
num-derive = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false }
ostd-macros = { version = "0.14.0", path = "libs/ostd-macros" }
ostd-test = { version = "0.14.0", path = "libs/ostd-test" }
ostd-macros = { version = "0.14.1", path = "libs/ostd-macros" }
ostd-test = { version = "0.14.1", path = "libs/ostd-test" }
ostd-pod = { git = "https://github.com/asterinas/ostd-pod", rev = "c4644be", version = "0.1.1" }
spin = "0.9.4"
smallvec = "1.13.2"

View File

@ -1,6 +1,6 @@
[package]
name = "linux-boot-params"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "The Boot Parameters for Linux Boot Protocol"
license = "MPL-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "linux-bzimage-builder"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "Linux boot compatibility for modern OSes"
license = "MPL-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "linux-bzimage-setup"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "The linux bzImage setup binary"
license = "MPL-2.0"
@ -16,7 +16,7 @@ path = "src/main.rs"
cfg-if = "1.0.0"
core2 = { version = "0.4.0", default-features = false, features = ["nightly"] }
libflate = { version = "2.1.0", default-features = false }
linux-boot-params = { version = "0.14.0", path = "../boot-params" }
linux-boot-params = { version = "0.14.1", path = "../boot-params" }
uart_16550 = "0.3.0"
xmas-elf = "0.9.1"

View File

@ -1,6 +1,6 @@
[package]
name = "ostd-macros"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "OSTD's proc macros"
license = "MPL-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "ostd-test"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
description = "The kernel mode unit testing framework of OSTD"
license = "MPL-2.0"