diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8c7851..15d6c0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: args: --workspace --all-targets --all-features check_msrv: - name: Check MSRV (1.59.0) + name: Check ash MSRV (1.59.0) runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 @@ -27,7 +27,18 @@ jobs: - uses: actions-rs/cargo@v1 with: command: check - args: -p ash -p ash-window --all-features + args: -p ash --all-features + + check_ash_window_msrv: + name: Check ash-window MSRV (1.64.0) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: dtolnay/rust-toolchain@1.64.0 + - uses: actions-rs/cargo@v1 + with: + command: check + args: -p ash-window -p examples --all-features generated: name: Generated diff --git a/README.md b/README.md index 12c0892..513519c 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ A very lightweight wrapper around Vulkan [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE-MIT) [![LICENSE](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE-APACHE) [![Join the chat at https://gitter.im/MaikKlein/ash](https://badges.gitter.im/MaikKlein/ash.svg)](https://gitter.im/MaikKlein/ash?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![MSRV](https://img.shields.io/badge/rustc-1.60.0+-ab6000.svg)](https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html) ## Overview - [x] A true Vulkan API without compromises diff --git a/ash-window/Cargo.toml b/ash-window/Cargo.toml index 316924c..1a69aae 100644 --- a/ash-window/Cargo.toml +++ b/ash-window/Cargo.toml @@ -12,7 +12,7 @@ categories = ["game-engines", "graphics"] exclude = [".github/*"] workspace = ".." edition = "2021" -rust-version = "1.59.0" +rust-version = "1.64.0" [dependencies] ash = { path = "../ash", version = "0.37", default-features = false } diff --git a/ash-window/Changelog.md b/ash-window/Changelog.md index c649fc5..1fe5a58 100644 --- a/ash-window/Changelog.md +++ b/ash-window/Changelog.md @@ -2,6 +2,8 @@ ## [Unreleased] - ReleaseDate +- Bumped MSRV from 1.59 to 1.64 for `raw-window-handle 0.5.1`. (#709, #716) + ## [0.12.0] - 2022-09-23 ### Changed diff --git a/ash-window/README.md b/ash-window/README.md index fcf298c..6e7d699 100644 --- a/ash-window/README.md +++ b/ash-window/README.md @@ -8,6 +8,7 @@ Interoperability between [`ash`](https://github.com/MaikKlein/ash) and [`raw-win [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE-MIT) [![LICENSE](https://img.shields.io/badge/license-apache-blue.svg)](LICENSE-APACHE) [![Join the chat at https://gitter.im/MaikKlein/ash](https://badges.gitter.im/MaikKlein/ash.svg)](https://gitter.im/MaikKlein/ash?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![MSRV](https://img.shields.io/badge/rustc-1.64.0+-ab6000.svg)](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html) ## Usage