From 9ea44ed2b60bc81a5efb18af79e41fc07bf3d523 Mon Sep 17 00:00:00 2001 From: Zhang Junyang Date: Thu, 5 Mar 2026 20:31:29 +0800 Subject: [PATCH] Bump the version to 0.17.1 --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 10 +++++----- VERSION | 2 +- osdk/Cargo.lock | 4 ++-- osdk/Cargo.toml | 4 ++-- tools/sctrace/Cargo.toml | 2 +- 6 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c1a2ba35f..b534b1762 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1099,11 +1099,11 @@ dependencies = [ [[package]] name = "linux-boot-params" -version = "0.17.0" +version = "0.17.1" [[package]] name = "linux-bzimage-builder" -version = "0.17.0" +version = "0.17.1" dependencies = [ "align_ext", "bitflags 1.3.2", @@ -1116,7 +1116,7 @@ dependencies = [ [[package]] name = "linux-bzimage-setup" -version = "0.17.0" +version = "0.17.1" dependencies = [ "cfg-if", "core2", @@ -1299,7 +1299,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "osdk-frame-allocator" -version = "0.17.0" +version = "0.17.1" dependencies = [ "log", "ostd", @@ -1308,7 +1308,7 @@ dependencies = [ [[package]] name = "osdk-heap-allocator" -version = "0.17.0" +version = "0.17.1" dependencies = [ "log", "ostd", @@ -1316,7 +1316,7 @@ dependencies = [ [[package]] name = "osdk-test-kernel" -version = "0.17.0" +version = "0.17.1" dependencies = [ "ostd", "owo-colors", @@ -1324,7 +1324,7 @@ dependencies = [ [[package]] name = "ostd" -version = "0.17.0" +version = "0.17.1" dependencies = [ "acpi", "align_ext", @@ -1362,7 +1362,7 @@ dependencies = [ [[package]] name = "ostd-macros" -version = "0.17.0" +version = "0.17.1" dependencies = [ "proc-macro2", "quote", @@ -1392,7 +1392,7 @@ dependencies = [ [[package]] name = "ostd-test" -version = "0.17.0" +version = "0.17.1" [[package]] name = "owo-colors" diff --git a/Cargo.toml b/Cargo.toml index a668a48fa..2e175ed9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,22 +78,22 @@ redundant_test_prefix = "warn" # FIXME: The current key order is not yet finalized. # Once `cargo-cargofmt` becomes stable, we will use it to enforce a consistent key order. [workspace.package] -version = "0.17.0" +version = "0.17.1" repository = "https://github.com/asterinas/asterinas" license = "MPL-2.0" edition = "2024" [workspace.dependencies] -ostd = { version = "0.17.0", path = "ostd" } +ostd = { version = "0.17.1", path = "ostd" } # Crates under ostd/libs align_ext = { path = "ostd/libs/align_ext", version = "0.1.0" } id-alloc = { path = "ostd/libs/id-alloc", version = "0.1.0" } int-to-c-enum = { path = "ostd/libs/int-to-c-enum", version = "0.1.0" } -linux-boot-params = { version = "0.17.0", path = "ostd/libs/linux-bzimage/boot-params" } -ostd-macros = { version = "0.17.0", path = "ostd/libs/ostd-macros" } +linux-boot-params = { version = "0.17.1", path = "ostd/libs/linux-bzimage/boot-params" } +ostd-macros = { version = "0.17.1", path = "ostd/libs/ostd-macros" } ostd-pod = { path = "ostd/libs/ostd-pod", version = "0.4.0" } -ostd-test = { version = "0.17.0", path = "ostd/libs/ostd-test" } +ostd-test = { version = "0.17.1", path = "ostd/libs/ostd-test" } # Crates under kernel/comps aster-block = { path = "kernel/comps/block" } diff --git a/VERSION b/VERSION index 07feb8234..14a8c2457 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.17.0 \ No newline at end of file +0.17.1 \ No newline at end of file diff --git a/osdk/Cargo.lock b/osdk/Cargo.lock index 315f9f99d..4e09952b5 100644 --- a/osdk/Cargo.lock +++ b/osdk/Cargo.lock @@ -170,7 +170,7 @@ checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c" [[package]] name = "cargo-osdk" -version = "0.17.0" +version = "0.17.1" dependencies = [ "assert_cmd", "chrono", @@ -621,7 +621,7 @@ dependencies = [ [[package]] name = "linux-bzimage-builder" -version = "0.17.0" +version = "0.17.1" dependencies = [ "align_ext", "bitflags 1.3.2", diff --git a/osdk/Cargo.toml b/osdk/Cargo.toml index 46b486d66..d9441d235 100644 --- a/osdk/Cargo.toml +++ b/osdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-osdk" -version = "0.17.0" +version = "0.17.1" edition = "2024" 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.17.0", path = "../ostd/libs/linux-bzimage/builder" } +linux-bzimage-builder = { version = "0.17.1", 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/tools/sctrace/Cargo.toml b/tools/sctrace/Cargo.toml index 5aa48ff82..fdab82b9d 100644 --- a/tools/sctrace/Cargo.toml +++ b/tools/sctrace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sctrace" -version = "0.17.0" +version = "0.17.1" edition = "2024" description = "Syscall Compatibility Tracer (sctrace) that analyzes and validates system call against System Call Matching Language (SCML)" license = "MPL-2.0"