Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ license = "MIT/Apache-2.0"
name = "x86_64"
readme = "README.md"
repository = "https://github.com/rust-osdev/x86_64"
version = "0.15.2"
version = "0.15.3"
edition = "2018"
rust-version = "1.59" # Needed to support inline asm and default const generics

Expand Down
27 changes: 27 additions & 0 deletions Changelog.md
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't mention #529 because it's been reverted in #545.

Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Unreleased

# 0.15.3 – 2025-11-19

## New Features

- [Add `MapperFlush` method to get page](https://github.com/rust-osdev/x86_64/pull/525)
- [add `update()` to `Cr3`, `Dr7`, `SFMask`, `UCet`, `SCet`, `mxcsr`, `rflags`, and `XCr0`](https://github.com/rust-osdev/x86_64/pull/527)
- [add IA32_APIC_BASE support](https://github.com/rust-osdev/x86_64/pull/532)
- [implement functions for accessing CR8](https://github.com/rust-osdev/x86_64/pull/547)
- [add forwarding `impl PageTableFrameMapping for &P`](https://github.com/rust-osdev/x86_64/pull/556)
- [add PageFaultErrorCode::HLAT](https://github.com/rust-osdev/x86_64/pull/564)

## Fixes

- [fix panic in `impl fmt::Debug for EntryOptions`](https://github.com/rust-osdev/x86_64/pull/522)
- [Ensure that addition and subtraction of addresses panics on overflow/underflow](https://github.com/rust-osdev/x86_64/pull/535)
- [fix typo](https://github.com/rust-osdev/x86_64/pull/555)

## Other Improvements

- [fix warnings & remove broken CI job](https://github.com/rust-osdev/x86_64/pull/530)
- [use default python again](https://github.com/rust-osdev/x86_64/pull/533)
- [don't pass -Crelocation-model=static to host targets](https://github.com/rust-osdev/x86_64/pull/536)
- [fix kani build job](https://github.com/rust-osdev/x86_64/pull/544)
- [improve `VirtAddr` `Add` & `Sub` impls](https://github.com/rust-osdev/x86_64/pull/543)
- [Add "FMask" alias for SFMask](https://github.com/rust-osdev/x86_64/pull/552)
- [Bump actions/checkout from 4 to 5](https://github.com/rust-osdev/x86_64/pull/563)

# 0.15.2 – 2024-11-30

This release is compatible with Rust nightlies starting with `nightly-2024-11-23` (this only applies when the `nightly` feature is used).
Expand Down