diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f8acba..3cc206c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,11 @@ env: # If the compilation fails, then the version specified here needs to be bumped up to reality. # Be sure to also update the rust-version property in the workspace Cargo.toml file, # plus all the README.md files of the affected packages. - RUST_MIN_VER: "1.75" + RUST_MIN_VER: "1.82" # List of packages that will be checked with the minimum supported Rust version. # This should be limited to packages that are intended for publishing. RUST_MIN_VER_PKGS: "-p velato" - # Rationale # # We don't run clippy with --all-targets because then even --lib and --bins are compiled with @@ -152,13 +151,13 @@ jobs: os: [windows-latest, macos-latest, ubuntu-latest] include: - os: ubuntu-latest - gpu: 'yes' + gpu: "yes" - os: macos-latest - gpu: 'yes' + gpu: "yes" - os: windows-latest # TODO: The windows runners theoretically have CPU fallback for GPUs, but # this failed in initial testing - gpu: 'no' + gpu: "no" steps: - uses: actions/checkout@v4 @@ -244,7 +243,7 @@ jobs: run: cargo apk check -p with_winit --lib env: # This is a bit of a hack, but cargo apk doesn't seem to allow customising this - RUSTFLAGS: '-D warnings' + RUSTFLAGS: "-D warnings" check-msrv: name: cargo check (msrv) @@ -322,7 +321,7 @@ jobs: - name: cargo doc run: cargo doc --workspace --locked --all-features --no-deps --document-private-items env: - RUSTDOCFLAGS: '--cfg docsrs -D warnings' + RUSTDOCFLAGS: "--cfg docsrs -D warnings" # If this fails, consider changing your text or adding something to .typos.toml. typos: diff --git a/CHANGELOG.md b/CHANGELOG.md index 343d583..9a67455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,11 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe ## [Unreleased] -This release has an [MSRV][] of 1.75. +This release has an [MSRV][] of 1.82. + +### Changed + +- Updated to `vello` 0.4 ([#49][] by [@simbleau][]). ## [0.4.0] - 2024-11-21