Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to v0.4.2, fix x86_64 dep version as v0.15.1 #9

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bump version to v0.4.2, fix x86_64 dep version as v0.15.1
hky1999 committed Dec 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit f8d87fd89d4cf851c9e3d64a0ce35abbcaee51a4
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.4.1"
version = "0.4.2"
authors = ["Yuekai Jia <[email protected]>"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
homepage = "https://github.com/arceos-org/arceos"
2 changes: 1 addition & 1 deletion page_table_entry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ memory_addr = "0.3"
aarch64-cpu = "9.4"

[target.'cfg(any(target_arch = "x86_64", doc))'.dependencies]
x86_64 = "0.15"
x86_64 = "=0.15.1"

[package.metadata.docs.rs]
rustc-args = [ "--cfg" , "doc"]
2 changes: 1 addition & 1 deletion page_table_multiarch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ categories.workspace = true
[dependencies]
log = "0.4"
memory_addr = "0.3"
page_table_entry = { path = "../page_table_entry", version = "0.4.1" }
page_table_entry = { path = "../page_table_entry", version = "0.4.2" }

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