From 4e78653b5bcab9dc0d9899a4c4089f512f76643e Mon Sep 17 00:00:00 2001 From: jiangjianfeng Date: Tue, 5 Aug 2025 05:57:48 +0000 Subject: [PATCH] Bump project version to 0.16.0 --- .github/workflows/push_git_tag.yml | 2 +- Cargo.lock | 18 +++++++++--------- VERSION | 2 +- osdk/Cargo.lock | 4 ++-- osdk/Cargo.toml | 4 ++-- osdk/deps/frame-allocator/Cargo.toml | 4 ++-- osdk/deps/heap-allocator/Cargo.toml | 4 ++-- osdk/deps/test-kernel/Cargo.toml | 4 ++-- ostd/Cargo.toml | 8 ++++---- ostd/libs/linux-bzimage/boot-params/Cargo.toml | 2 +- ostd/libs/linux-bzimage/builder/Cargo.toml | 2 +- ostd/libs/linux-bzimage/setup/Cargo.toml | 4 ++-- ostd/libs/ostd-macros/Cargo.toml | 2 +- ostd/libs/ostd-test/Cargo.toml | 2 +- 14 files changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/push_git_tag.yml b/.github/workflows/push_git_tag.yml index ba831ceea..92bebb2d7 100644 --- a/.github/workflows/push_git_tag.yml +++ b/.github/workflows/push_git_tag.yml @@ -18,4 +18,4 @@ jobs: uses: pxpm/github-tag-action@1.0.1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - tag: v0.15.2 + tag: v0.16.0 diff --git a/Cargo.lock b/Cargo.lock index 3cb6de9b9..0624a41bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,11 +1055,11 @@ dependencies = [ [[package]] name = "linux-boot-params" -version = "0.15.2" +version = "0.16.0" [[package]] name = "linux-bzimage-builder" -version = "0.15.2" +version = "0.16.0" dependencies = [ "align_ext", "bitflags 1.3.2", @@ -1071,7 +1071,7 @@ dependencies = [ [[package]] name = "linux-bzimage-setup" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cfg-if", "core2", @@ -1247,7 +1247,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "osdk-frame-allocator" -version = "0.15.2" +version = "0.16.0" dependencies = [ "log", "ostd", @@ -1256,7 +1256,7 @@ dependencies = [ [[package]] name = "osdk-heap-allocator" -version = "0.15.2" +version = "0.16.0" dependencies = [ "log", "ostd", @@ -1264,7 +1264,7 @@ dependencies = [ [[package]] name = "osdk-test-kernel" -version = "0.15.2" +version = "0.16.0" dependencies = [ "ostd", "owo-colors 4.2.0", @@ -1272,7 +1272,7 @@ dependencies = [ [[package]] name = "ostd" -version = "0.15.2" +version = "0.16.0" dependencies = [ "acpi", "align_ext", @@ -1310,7 +1310,7 @@ dependencies = [ [[package]] name = "ostd-macros" -version = "0.15.2" +version = "0.16.0" dependencies = [ "proc-macro2", "quote", @@ -1338,7 +1338,7 @@ dependencies = [ [[package]] name = "ostd-test" -version = "0.15.2" +version = "0.16.0" [[package]] name = "owo-colors" diff --git a/VERSION b/VERSION index a12760eb1..d183d4ace 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.15.2 \ No newline at end of file +0.16.0 \ No newline at end of file diff --git a/osdk/Cargo.lock b/osdk/Cargo.lock index ac45c5f04..839826d0b 100644 --- a/osdk/Cargo.lock +++ b/osdk/Cargo.lock @@ -184,7 +184,7 @@ dependencies = [ [[package]] name = "cargo-osdk" -version = "0.15.2" +version = "0.16.0" dependencies = [ "assert_cmd", "chrono", @@ -622,7 +622,7 @@ dependencies = [ [[package]] name = "linux-bzimage-builder" -version = "0.15.2" +version = "0.16.0" dependencies = [ "align_ext", "bitflags 1.3.2", diff --git a/osdk/Cargo.toml b/osdk/Cargo.toml index 277d42f75..c908a90b6 100644 --- a/osdk/Cargo.toml +++ b/osdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-osdk" -version = "0.15.2" +version = "0.16.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.15.2", path = "../ostd/libs/linux-bzimage/builder" } +linux-bzimage-builder = { version = "0.16.0", path = "../ostd/libs/linux-bzimage/builder" } clap = { version = "4.4.17", features = ["cargo", "derive"] } chrono = "0.4.38" env_logger = "0.11.0" diff --git a/osdk/deps/frame-allocator/Cargo.toml b/osdk/deps/frame-allocator/Cargo.toml index be66015e8..f58a8a1fc 100644 --- a/osdk/deps/frame-allocator/Cargo.toml +++ b/osdk/deps/frame-allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "osdk-frame-allocator" -version = "0.15.2" +version = "0.16.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.15.2", path = "../../../ostd" } +ostd = { version = "0.16.0", path = "../../../ostd" } paste = "1.0.15" [lints] diff --git a/osdk/deps/heap-allocator/Cargo.toml b/osdk/deps/heap-allocator/Cargo.toml index 5b5e9a896..007de7a2b 100644 --- a/osdk/deps/heap-allocator/Cargo.toml +++ b/osdk/deps/heap-allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "osdk-heap-allocator" -version = "0.15.2" +version = "0.16.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.15.2", path = "../../../ostd" } +ostd = { version = "0.16.0", path = "../../../ostd" } [lints] workspace = true diff --git a/osdk/deps/test-kernel/Cargo.toml b/osdk/deps/test-kernel/Cargo.toml index 097ad3101..2f53270a7 100644 --- a/osdk/deps/test-kernel/Cargo.toml +++ b/osdk/deps/test-kernel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "osdk-test-kernel" -version = "0.15.2" +version = "0.16.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.15.2", path = "../../../ostd" } +ostd = { version = "0.16.0", path = "../../../ostd" } owo-colors = "4.0.0" [lints] diff --git a/ostd/Cargo.toml b/ostd/Cargo.toml index b740a6eb6..833a27516 100644 --- a/ostd/Cargo.toml +++ b/ostd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ostd" -version = "0.15.2" +version = "0.16.0" edition = "2021" description = "Rust OS framework that facilitates the development of and innovation in OS kernels" license = "MPL-2.0" @@ -26,11 +26,11 @@ 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.15.2", path = "libs/linux-bzimage/boot-params" } +linux-boot-params = { version = "0.16.0", path = "libs/linux-bzimage/boot-params" } log = "0.4" num-traits = { version = "0.2", default-features = false } -ostd-macros = { version = "0.15.2", path = "libs/ostd-macros" } -ostd-test = { version = "0.15.2", path = "libs/ostd-test" } +ostd-macros = { version = "0.16.0", path = "libs/ostd-macros" } +ostd-test = { version = "0.16.0", 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" diff --git a/ostd/libs/linux-bzimage/boot-params/Cargo.toml b/ostd/libs/linux-bzimage/boot-params/Cargo.toml index d6702737b..122df134d 100644 --- a/ostd/libs/linux-bzimage/boot-params/Cargo.toml +++ b/ostd/libs/linux-bzimage/boot-params/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linux-boot-params" -version = "0.15.2" +version = "0.16.0" edition = "2021" description = "The Boot Parameters for Linux Boot Protocol" license = "MPL-2.0" diff --git a/ostd/libs/linux-bzimage/builder/Cargo.toml b/ostd/libs/linux-bzimage/builder/Cargo.toml index 4ed302891..5a32e3788 100644 --- a/ostd/libs/linux-bzimage/builder/Cargo.toml +++ b/ostd/libs/linux-bzimage/builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linux-bzimage-builder" -version = "0.15.2" +version = "0.16.0" edition = "2021" description = "Linux boot compatibility for modern OSes" license = "MPL-2.0" diff --git a/ostd/libs/linux-bzimage/setup/Cargo.toml b/ostd/libs/linux-bzimage/setup/Cargo.toml index 5e092d26c..afc5ac7a2 100644 --- a/ostd/libs/linux-bzimage/setup/Cargo.toml +++ b/ostd/libs/linux-bzimage/setup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linux-bzimage-setup" -version = "0.15.2" +version = "0.16.0" 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.15.2", path = "../boot-params" } +linux-boot-params = { version = "0.16.0", path = "../boot-params" } uart_16550 = "0.3.0" xmas-elf = "0.10.0" diff --git a/ostd/libs/ostd-macros/Cargo.toml b/ostd/libs/ostd-macros/Cargo.toml index fcd7abc6f..a986e5029 100644 --- a/ostd/libs/ostd-macros/Cargo.toml +++ b/ostd/libs/ostd-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ostd-macros" -version = "0.15.2" +version = "0.16.0" edition = "2021" description = "OSTD's proc macros" license = "MPL-2.0" diff --git a/ostd/libs/ostd-test/Cargo.toml b/ostd/libs/ostd-test/Cargo.toml index 40baab0d4..8c7c51b02 100644 --- a/ostd/libs/ostd-test/Cargo.toml +++ b/ostd/libs/ostd-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ostd-test" -version = "0.15.2" +version = "0.16.0" edition = "2021" description = "The kernel mode unit testing framework of OSTD" license = "MPL-2.0"