Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# it makes sense to optimize for 64-bit and accept the performance hits on 32-bit.
# 16 bytes is the number of bytes that fits into two 64-bit CPU registers.
trivial-copy-size-limit = 16

msrv = "1.86.0"
# END LINEBENDER LINT SET
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ env:
# version like 1.70. Note that we only specify MAJOR.MINOR and not PATCH so that bugfixes still
# come automatically. If the version specified here is no longer the latest stable version,
# then please feel free to submit a PR that adjusts it along with the potential clippy fixes.
RUST_STABLE_VER: "1.88" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7
RUST_STABLE_VER: "1.90" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7
# The purpose of checking with the minimum supported Rust toolchain is to detect its staleness.
# 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.85"
RUST_MIN_VER: "1.86"
# 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 vello_svg"
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@ You can find its changes [documented below](#071-2025-06-21).

## [Unreleased][]

This release has an [MSRV][] of 1.85.
This release has an [MSRV][] of 1.86.

## [0.8.0][] (2025-10-05)

This release has an [MSRV][] of 1.86.

### Changed

- Updated vello to 0.6.0

## [0.7.1][] (2025-06-21)

Expand All @@ -34,7 +42,7 @@ This release has an [MSRV][] of 1.85.

### Changed

- Updated vello and usvg ([#63][] by [@RobertBrewitz][] and [@simbleau][]))
- Updated vello and usvg ([#63][] by [@RobertBrewitz][] and [@simbleau][])

## [0.6.0][] (2025-01-21)

Expand Down
Loading