Skip to content

Commit

Permalink
Bump to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
equation314 committed Jul 25, 2024
1 parent 366179f commit 018e89c
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 15 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 0.2.0

- No longer collect intermediate tables into a `Vec`, walk the page table and
deallocate them on drop.
- Replace the `update` method of `PageTable64` with `remap` and `protect`, also add `protect_region` and `copy_from`.

## 0.1.0

Initial release.
10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,13 @@ members = [
"page_table_multiarch",
"page_table_entry",
]

[workspace.package]
version = "0.2.0"
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"
documentation = "https://arceos-org.github.io/page_table_multiarch"
repository = "https://github.com/arceos-org/page_table_multiarch"
keywords = ["arceos", "paging", "page-table", "virtual-memory"]
categories = ["os", "hardware-support", "memory-management", "no-std"]
14 changes: 7 additions & 7 deletions page_table_entry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "page_table_entry"
version = "0.1.2"
edition = "2021"
authors = ["Yuekai Jia <[email protected]>"]
description = "Page table entry definition for various hardware architectures"
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
homepage = "https://github.com/arceos-org/arceos"
repository = "https://github.com/arceos-org/page_table_multiarch"
documentation = "https://docs.rs/page_table_entry"
keywords = ["arceos", "paging", "page-table", "virtual-memory"]
categories = ["os", "hardware-support", "memory-management", "no-std"]
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]
bitflags = "2.6"
Expand Down
16 changes: 8 additions & 8 deletions page_table_multiarch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "page_table_multiarch"
version = "0.1.2"
edition = "2021"
authors = ["Yuekai Jia <[email protected]>"]
description = "Generic page table structures for various hardware architectures"
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
homepage = "https://github.com/arceos-org/arceos"
repository = "https://github.com/arceos-org/page_table_multiarch"
documentation = "https://docs.rs/page_table_multiarch"
keywords = ["arceos", "paging", "page-table", "virtual-memory"]
categories = ["os", "hardware-support", "memory-management", "no-std"]
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]
log = "0.4"
memory_addr = "0.2"
page_table_entry = { path = "../page_table_entry", version = "0.1" }
page_table_entry = { path = "../page_table_entry", version = "0.2" }

0 comments on commit 018e89c

Please sign in to comment.