diff --git a/Cargo.toml b/Cargo.toml index b8b079716..71e859c52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ license = "MIT/Apache-2.0" name = "x86_64" readme = "README.md" repository = "https://github.com/rust-osdev/x86_64" -version = "0.14.5" +version = "0.14.6" edition = "2018" [dependencies] diff --git a/Changelog.md b/Changelog.md index 7db579fba..05c96f38b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,13 @@ # Unreleased +# 0.14.6 – 2021-09-20 + +- New `registers::segmentation` module ([#309](https://github.com/rust-osdev/x86_64/pull/309)), containing: + - `instructions::segmentation::{Segment, Segment64, CS, DS, ES, FS, GS, SS}` + - `structures::gdt::SegmentSelector` + - Old locations still re-export all the types, so this is not a breaking change. +- Fixes build so that `cargo doc --no-default-features` succeeds. + # 0.14.5 – 2021-09-04 - Add `ExceptionVector` enum and additional flags to `PageFaultErrorCode` ([#303](https://github.com/rust-osdev/x86_64/pull/303))