Skip to content

Commit

Permalink
Bump MSRV to 1.65
Browse files Browse the repository at this point in the history
  • Loading branch information
notgull authored Mar 26, 2023
1 parent 534f0c9 commit e2ba7f1
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust_version: [1.64.0, stable, nightly]
rust_version: [1.65.0, stable, nightly]
platform:
- { target: x86_64-pc-windows-msvc, os: windows-latest, }
- { target: i686-pc-windows-msvc, os: windows-latest, }
Expand Down Expand Up @@ -102,6 +102,6 @@ jobs:

- name: Lint with clippy
shell: bash
if: (matrix.rust_version == '1.64.0') && !contains(matrix.platform.options, '--no-default-features')
if: (matrix.rust_version == '1.65.0') && !contains(matrix.platform.options, '--no-default-features')
run: cargo clippy --workspace --all-targets --target ${{ matrix.platform.target }} $OPTIONS --features $FEATURES -- -Dwarnings

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Unreleased

- Bump MSRV from `1.60` to `1.64`.
- Bump MSRV from `1.60` to `1.65`.

# Version 0.30.7

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Note that glutin aims at being a low-level brick in your rendering
infrastructure. You are encouraged to write another layer of abstraction
between glutin and your application.

The minimum Rust version target by glutin is `1.64.0`.
The minimum Rust version target by glutin is `1.65.0`.

## Platform-specific notes

Expand Down
2 changes: 1 addition & 1 deletion glutin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/rust-windowing/glutin"
documentation = "https://docs.rs/glutin"
rust-version = "1.64.0"
rust-version = "1.65.0"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion glutin_egl_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "The egl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"
edition = "2021"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion glutin_examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Examples for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "../README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion glutin_gles2_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "The gles2 bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"
edition = "2021"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion glutin_glx_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "The glx bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"
edition = "2021"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion glutin_wgl_sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "The wgl bindings for glutin"
repository = "https://github.com/rust-windowing/glutin"
license = "Apache-2.0"
readme = "README.md"
rust-version = "1.64.0"
rust-version = "1.65.0"
edition = "2021"

[build-dependencies]
Expand Down

0 comments on commit e2ba7f1

Please sign in to comment.