From 204a80b96c4ceda11bd3c26ed6fbd05155c00bea Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Mon, 4 May 2026 07:41:29 +0200 Subject: [PATCH 1/2] typo: fix --- multiboot2/CHANGELOG.md | 2 ++ multiboot2/src/lib.rs | 2 +- multiboot2/src/vbe_info.rs | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/multiboot2/CHANGELOG.md b/multiboot2/CHANGELOG.md index 14fdf6da..5a4e7f07 100644 --- a/multiboot2/CHANGELOG.md +++ b/multiboot2/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- **Breaking**: `VBEWindowAttributes::WRITABLE` renamed to `WRITEABLE` + ## v0.24.1 (2025-11-21) - Fix typo diff --git a/multiboot2/src/lib.rs b/multiboot2/src/lib.rs index fda9efde..bb7c3794 100644 --- a/multiboot2/src/lib.rs +++ b/multiboot2/src/lib.rs @@ -490,7 +490,7 @@ mod tests { assert!(vbe.mode_info().window_a_attributes.contains( VBEWindowAttributes::RELOCATABLE | VBEWindowAttributes::READABLE - | VBEWindowAttributes::WRITEABLE + | VBEWindowAttributes::WRITABLE )); assert_eq!({ vbe.mode_info().window_granularity }, 64); assert_eq!({ vbe.mode_info().window_size }, 64); diff --git a/multiboot2/src/vbe_info.rs b/multiboot2/src/vbe_info.rs index a7547182..b2db7b4e 100644 --- a/multiboot2/src/vbe_info.rs +++ b/multiboot2/src/vbe_info.rs @@ -420,8 +420,8 @@ bitflags! { /// Window is readable? const READABLE = 0x2; - /// Window is writeable? - const WRITEABLE = 0x4; + /// Window is writable? + const WRITABLE = 0x4; } } From c41004e4fbdbbe2642be9cbf15abede0c6862b29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 11:32:28 +0000 Subject: [PATCH 2/2] build(deps): bump crate-ci/typos from 1.44.0 to 1.46.0 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.44.0 to 1.46.0. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.44.0...v1.46.0) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-version: 1.46.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/qa.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 2312cc60..0fe510f1 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -13,4 +13,4 @@ jobs: steps: - uses: actions/checkout@v6 # Executes "typos ." - - uses: crate-ci/typos@v1.44.0 + - uses: crate-ci/typos@v1.46.0