Skip to content

Commit

Permalink
Bump MSRV to 1.60 to accomodate for winit 0.28/objc requirement (#…
Browse files Browse the repository at this point in the history
…709)

These dependencies fail to resolve on older Rust/cargo versions before
even complaining about them being a too-high MSRV.
  • Loading branch information
MarijnS95 authored Feb 24, 2023
1 parent 90ccc31 commit 9e71ab9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
args: --workspace --all-targets --all-features

check_msrv:
name: Check MSRV (1.59.0)
name: Check MSRV (1.60.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: dtolnay/rust-toolchain@1.59.0
- uses: dtolnay/rust-toolchain@1.60.0
- uses: actions-rs/cargo@v1
with:
command: check
Expand Down
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Replaced builders with lifetimes/setters directly on Vulkan structs (#602)
- Inlined struct setters (#602)
- Bumped MSRV from 1.59 to 1.60 (#709)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion ash-window/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["game-engines", "graphics"]
exclude = [".github/*"]
workspace = ".."
edition = "2021"
rust-version = "1.59.0"
rust-version = "1.60.0"

[dependencies]
ash = { path = "../ash", version = "0.37", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions ash-window/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Bumped `raw-window-handle` to `0.5.0`, now taking `RawDisplayHandle` and `RawWindowHandle` directly
instead of requiring dynamic dispatch through the `HasRaw{Display,Window}Handle` traits (#645)
- Bumped MSRV from 1.59 to 1.60 (#709)

## [0.11.0] - 2022-07-29

Expand Down
2 changes: 1 addition & 1 deletion ash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ readme = "../README.md"
keywords = ["vulkan", "graphic"]
documentation = "https://docs.rs/ash"
edition = "2021"
rust-version = "1.59.0"
rust-version = "1.60.0"

[dependencies]
libloading = { version = "0.7", optional = true }
Expand Down

0 comments on commit 9e71ab9

Please sign in to comment.