From ecf0d45bfad291c181e060cf638f3640508c5d4d Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Thu, 2 May 2024 07:07:13 -0700 Subject: [PATCH] Updating MSRV --- .github/workflows/rust.yml | 2 +- CHANGELOG.md | 3 +-- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a0f4e10a4..b00455ea8 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - version: ["stable", "1.70.0"] + version: ["stable", "1.74.1"] os: ["ubuntu-latest", "windows-latest", "macos-latest"] runs-on: ${{ matrix.os }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 09abd1e13..321e54781 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking Changes +- This crate's MSRV is now `1.74.1`, required by updating `wgpu`. - `wgpu` has been updated to `0.20`. - `winit` has been updated to `0.30`. - All context types no longer accept a `'window` lifetime. For most end-user @@ -87,8 +88,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed a possible deadlock when using `DynamicReader::block_until_updated`. - Removed an edge case ensuring `Waker`s are signaled for `DynamicReader`s that are waiting for value when the last `Dynamic` is dropped. -- Compatibility with Rust v1.70.0 has been restored, and continuous integration - testing the MSRV has been added. - `Progress` now utilizes `IntoSource` instead of `IntoDynamic`. In general, this should not cause any code breakages unless the traits were being used in generics. diff --git a/Cargo.toml b/Cargo.toml index 5bf62c7a8..cb95fd9ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" keywords = ["gui", "ui", "widgets", "reactive"] categories = ["gui"] readme = "./README.md" -rust-version = "1.70.0" +rust-version = "1.74.1" [features] default = ["tracing-output", "roboto-flex"]