Skip to content

Commit 8648049

Browse files
committed
update chX & sbi to 0.4.9
1 parent c3b2e1a commit 8648049

10 files changed

Lines changed: 19 additions & 19 deletions

File tree

tg-rcore-tutorial-ch1/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch1"
33
description = "Chapter 1 of rCore Tutorial: A minimal bare-metal application running in RISC-V S-mode."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch1"
@@ -19,4 +19,4 @@ panic = "abort"
1919
panic = "abort"
2020

2121
[dependencies]
22-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
22+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }

tg-rcore-tutorial-ch2/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch2"
33
description = "Chapter 2 of rCore Tutorial: Batch processing system with privilege levels and trap handling."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch2"
@@ -25,7 +25,7 @@ panic = "abort"
2525
[dependencies]
2626
riscv = "0.10.1"
2727

28-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
28+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
2929
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3030
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3131
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8" }

tg-rcore-tutorial-ch3/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch3"
33
description = "Chapter 3 of rCore Tutorial: Multiprogramming and time-sharing multitasking."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch3"
@@ -29,7 +29,7 @@ panic = "abort"
2929
[dependencies]
3030
riscv = "0.10.1"
3131

32-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
32+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
3333
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3434
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3535
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8" }

tg-rcore-tutorial-ch4/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch4"
33
description = "Chapter 4 of rCore Tutorial: Address space management with SV39 virtual memory."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch4"
@@ -29,7 +29,7 @@ panic = "abort"
2929
xmas-elf = "0.8.0"
3030
riscv = "0.10.1"
3131

32-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
32+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
3333
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3434
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3535
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8", features = ["foreign"] }

tg-rcore-tutorial-ch5/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch5"
33
description = "Chapter 5 of rCore Tutorial: Process management with fork, exec and wait syscalls."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch5"
@@ -30,7 +30,7 @@ xmas-elf = "0.8.0"
3030
riscv = "0.10.1"
3131
spin = "0.9"
3232

33-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
33+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
3434
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3535
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3636
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8", features = ["foreign"] }

tg-rcore-tutorial-ch6/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch6"
33
description = "Chapter 6 of rCore Tutorial: File system with easy-fs and virtio block device."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch6"
@@ -31,7 +31,7 @@ xmas-elf = "0.8.0"
3131
riscv = "0.10.1"
3232
spin = "0.9"
3333

34-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
34+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
3535
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3636
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3737
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8", features = ["foreign"] }

tg-rcore-tutorial-ch7/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch7"
33
description = "Chapter 7 of rCore Tutorial: Inter-process communication with pipe and signal handling."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>","Yifan Wang<w-yf22@mails.tsinghua.edu.cn>","Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch7"
@@ -28,7 +28,7 @@ xmas-elf = "0.8.0"
2828
riscv = "0.10.1"
2929
spin = "0.9"
3030

31-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
31+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
3232
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3333
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3434
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8", features = ["foreign"] }

tg-rcore-tutorial-ch8/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tg-rcore-tutorial-ch8"
33
description = "Chapter 8 of rCore Tutorial: Concurrency with threads, mutex, semaphore and condvar."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
66
authors = ["YdrMaster <ydrml@hotmail.com>", "Yifan Wang <w-yf22@mails.tsinghua.edu.cn>", "Yu Chen <yuchen@tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-ch8"
@@ -31,7 +31,7 @@ xmas-elf = "0.8.0"
3131
riscv = "0.10.1"
3232
spin = "0.9"
3333

34-
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.8", features = ["nobios"] }
34+
tg-sbi = { package = "tg-rcore-tutorial-sbi", path = "../tg-rcore-tutorial-sbi", version = "0.4.9", features = ["nobios"] }
3535
tg-linker = { package = "tg-rcore-tutorial-linker", path = "../tg-rcore-tutorial-linker", version = "0.4.8" }
3636
tg-console = { package = "tg-rcore-tutorial-console", path = "../tg-rcore-tutorial-console", version = "0.4.8" }
3737
tg-kernel-context = { package = "tg-rcore-tutorial-kernel-context", path = "../tg-rcore-tutorial-kernel-context", version = "0.4.8", features = ["foreign"] }

tg-rcore-tutorial-sbi/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tg-rcore-tutorial-sbi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "tg-rcore-tutorial-sbi"
33
description = "SBI (Supervisor Binary Interface) call wrappers for rCore tutorial OS."
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2024"
6-
authors = ["Ivans-11 <w-yf22@mails.tsinghua.edu.cn>"]
6+
authors = ["WangYifan <w-yf22@mails.tsinghua.edu.cn>", "QinFeiran<qfr23@mails.tsinghua.edu.cn>"]
77
repository = "https://github.com/rcore-os/tg-rcore-tutorial-sbi"
88
homepage = "https://github.com/rcore-os/tg-rcore-tutorial-sbi/tree/test"
99
documentation = "https://docs.rs/tg-rcore-tutorial-sbi"

0 commit comments

Comments
 (0)