Skip to content

Commit 315508b

Browse files
committed
Bump to v0.5.2
1 parent 4902906 commit 315508b

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.5.2
4+
5+
### Minor Changes
6+
7+
- Make LoongArch64's page table default to 4 levels (https://github.com/arceos-org/page_table_multiarch/pull/12).
8+
- Do not link to alloc crate (https://github.com/arceos-org/page_table_multiarch/pull/13).
9+
- Implement `Clone` and `Copy` for `PagingError` (https://github.com/arceos-org/page_table_multiarch/pull/14).
10+
311
## 0.5.1
412

513
### LoongArch64

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "0.5.1"
10+
version = "0.5.2"
1111
edition = "2024"
1212
authors = ["Yuekai Jia <[email protected]>"]
1313
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Generic, unified, architecture-independent, and OS-free page table structures fo
44

55
Currently supported architectures:
66

7-
- x86_64
8-
- AArch64
9-
- RISC-V (Sv39, Sv48)
10-
- LoongArch64 (3 levels)
7+
- x86_64 (4 levels)
8+
- AArch64 (4 levels)
9+
- RISC-V (3 level Sv39, 4 levels Sv48)
10+
- LoongArch64 (4 levels)
1111

1212
See the documentation of the following crates for more details:
1313

page_table_multiarch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version.workspace = true
1515
[dependencies]
1616
log = "0.4"
1717
memory_addr = "0.3"
18-
page_table_entry = { path = "../page_table_entry", version = "0.5.1" }
18+
page_table_entry = { path = "../page_table_entry", version = "0.5.2" }
1919

2020
[target.'cfg(any(target_arch = "x86_64", doc))'.dependencies]
2121
x86 = "0.52"

0 commit comments

Comments
 (0)