|
5 | 5 | - [add `Mapper::clear` to clear any page table entry regardless of the present flag](https://github.com/rust-osdev/x86_64/pull/484)
|
6 | 6 | - [`Mapper::unmap` now also returns the flags of the page ](https://github.com/rust-osdev/x86_64/pull/484)
|
7 | 7 |
|
| 8 | +# 0.15.2 – 2024-11-30 |
| 9 | + |
| 10 | +This release is compatible with Rust nightlies starting with `nightly-2024-11-23` (this only applies when the `nightly` feature is used). |
| 11 | + |
| 12 | +## New Features |
| 13 | + |
| 14 | +- [add `GlobalDescriptorTable::limit`](https://github.com/rust-osdev/x86_64/pull/413) |
| 15 | +- [constify PhysFrame functions](https://github.com/rust-osdev/x86_64/pull/489) |
| 16 | +- [add `size` and `len` for `PageRange`, `PhysFrameRange`, `PageRangeInclusive` and `PhysFrameRangeInclusive`](https://github.com/rust-osdev/x86_64/pull/491) |
| 17 | +- [TryFrom implementation for ExceptionVector](https://github.com/rust-osdev/x86_64/pull/506) |
| 18 | + |
| 19 | +## Fixes |
| 20 | + |
| 21 | +- [Only enable instructions on `x86_64`](https://github.com/rust-osdev/x86_64/pull/483) |
| 22 | +- [Ensure that Page actually implements Hash](https://github.com/rust-osdev/x86_64/pull/490) |
| 23 | +- [fix field order for INVPCID descriptor](https://github.com/rust-osdev/x86_64/pull/508) |
| 24 | +- [fix typo in "InvPicdCommand"](https://github.com/rust-osdev/x86_64/pull/509) |
| 25 | +- [fix signature of Step::steps_between implementations](https://github.com/rust-osdev/x86_64/pull/513) |
| 26 | + |
| 27 | +## Other Improvements |
| 28 | + |
| 29 | +- [docs: add aliases for `in{,b,w,l}` and `out{,b,w,l}`](https://github.com/rust-osdev/x86_64/pull/474) |
| 30 | +- [ci: migrate away from unmaintained actions](https://github.com/rust-osdev/x86_64/pull/478) |
| 31 | +- [chore: migrate from legacy `rust-toolchain` to `rust-toolchain.toml`](https://github.com/rust-osdev/x86_64/pull/479) |
| 32 | +- [test: replace `x86_64-bare-metal.json` with `x86_64-unknown-none`](https://github.com/rust-osdev/x86_64/pull/477) |
| 33 | +- [docs: fix and detect warnings](https://github.com/rust-osdev/x86_64/pull/475) |
| 34 | +- [CI: Set `-Crelocation-model=static` in `RUSTFLAGS` for bootloader test job](https://github.com/rust-osdev/x86_64/pull/480) |
| 35 | +- [silence warning about cast](https://github.com/rust-osdev/x86_64/pull/482) |
| 36 | +- [fix cfg related warnings](https://github.com/rust-osdev/x86_64/pull/485) |
| 37 | +- [fix warnings](https://github.com/rust-osdev/x86_64/pull/488) |
| 38 | +- [don't use label starting with 1](https://github.com/rust-osdev/x86_64/pull/492) |
| 39 | +- [fix testing](https://github.com/rust-osdev/x86_64/pull/495) |
| 40 | +- [remove `#![feature(asm_const)]`](https://github.com/rust-osdev/x86_64/pull/496) |
| 41 | +- [Remove stabilized const_mut_refs feature](https://github.com/rust-osdev/x86_64/pull/501) |
| 42 | +- [Fix clippy warnings](https://github.com/rust-osdev/x86_64/pull/502) |
| 43 | +- [fix CI job for building on MSRV](https://github.com/rust-osdev/x86_64/pull/510) |
| 44 | +- [gate HandlerFunc behind target_arch = "x86{\_64}"](https://github.com/rust-osdev/x86_64/pull/507) |
| 45 | +- [Typo fix in TaskStateSegment comment](https://github.com/rust-osdev/x86_64/pull/504) |
| 46 | +- [Minor clarification DescriptorTablePointer::limit comment](https://github.com/rust-osdev/x86_64/pull/503) |
| 47 | + |
8 | 48 | # 0.15.1 – 2024-03-19
|
9 | 49 |
|
10 | 50 | ## New Features
|
|
0 commit comments