Skip to content

Commit

Permalink
fix: changelog and msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Jan 27, 2025
1 parent 671bdda commit 469edf0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 469edf0

Please sign in to comment.