doc: add v0.1.10 changelog (#813)

* 完成v0.1.10 changelog
This commit is contained in:
LoGin 2024-05-13 16:56:26 +08:00 committed by GitHub
parent 9a0802fd2d
commit ce48b93437
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1065 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,6 +6,7 @@
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
V0.1.x/V0.1.10
V0.1.x/V0.1.9 V0.1.x/V0.1.9
V0.1.x/V0.1.8 V0.1.x/V0.1.8
V0.1.x/V0.1.7 V0.1.x/V0.1.7

View File

@ -1,6 +1,6 @@
[package] [package]
name = "dragonos_kernel" name = "dragonos_kernel"
version = "0.1.9" version = "0.1.10"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -17,7 +17,7 @@ void print_copyright()
printf(" DragonOS - An opensource operating system.\n"); printf(" DragonOS - An opensource operating system.\n");
printf(" Copyright: DragonOS Community. 2022-2024, All rights reserved.\n"); printf(" Copyright: DragonOS Community. 2022-2024, All rights reserved.\n");
printf(" Version: "); printf(" Version: ");
printf("\033[1;32m%s\033[0m", "V0.1.9\n"); printf("\033[1;32m%s\033[0m", "V0.1.10\n");
printf(" Git commit SHA1: %s\n", DRAGONOS_GIT_COMMIT_SHA1); printf(" Git commit SHA1: %s\n", DRAGONOS_GIT_COMMIT_SHA1);
printf(" Build time: %s %s\n", __DATE__, __TIME__); printf(" Build time: %s %s\n", __DATE__, __TIME__);
printf(" \nYou can visit the project via:\n"); printf(" \nYou can visit the project via:\n");