Skip to content

Commit 6656ce7

Browse files
Update to Kurbo 0.13.0 from 0.12.0 (#155)
1 parent d257af6 commit 6656ce7

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
# If the compilation fails, then the version specified here needs to be bumped up to reality.
99
# Be sure to also update the rust-version property in the workspace Cargo.toml file,
1010
# plus all the README.md files of the affected packages.
11-
RUST_MIN_VER: "1.82"
11+
RUST_MIN_VER: "1.85"
1212
# List of packages that will be checked with the minimum supported Rust version.
1313
# This should be limited to packages that are intended for publishing.
1414
RUST_MIN_VER_PKGS: "-p peniko"

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ You can find its changes [documented below](#050-2025-10-01).
1313

1414
## [Unreleased]
1515

16-
This release has an [MSRV] of 1.82.
16+
This release has an [MSRV] of 1.85.
1717

1818
### Added
1919

2020
- Derive `Eq` and `Hash` on `InterpolationAlphaSpace`. ([#148][] by [@sagudev][])
2121
- There is now a `From` conversion from `&ImageData` to `ImageBrushRef`. ([#147][] by [@DJMcNab][])
2222

23+
### Changed
24+
25+
- Breaking change: Update to [Kurbo v0.13.0](https://github.com/linebender/kurbo/releases/tag/v0.13.0). ([#155][] by [@waywardmonkeys][])
26+
2327
### Removed
2428

2529
- Breaking change: `Mix::Clip` has been removed; it was previously deprecated in v0.5.0. ([#124][] by [@DJMcNab][])
@@ -195,6 +199,7 @@ This release has an [MSRV] of 1.70.
195199
[#144]: https://github.com/linebender/peniko/pull/144
196200
[#147]: https://github.com/linebender/peniko/pull/147
197201
[#148]: https://github.com/linebender/peniko/pull/148
202+
[#155]: https://github.com/linebender/peniko/pull/155
198203

199204
[@dfrg]: https://github.com/dfrg
200205
[@DJMcNab]: https://github.com/DJMcNab

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository = "https://github.com/linebender/peniko"
1010
readme = "README.md"
1111
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml and with the relevant README.md files.
1212
# and with the MSRV in the `Unreleased` section of CHANGELOG.md.
13-
rust-version = "1.82"
13+
rust-version = "1.85"
1414
exclude = [".github", ".clippy.toml", ".gitignore", ".typos.toml", ".taplo.toml"]
1515

1616
[package.metadata.docs.rs]
@@ -34,7 +34,7 @@ serde = [
3434
]
3535

3636
[dependencies]
37-
kurbo = { version = "0.12.0", default-features = false }
37+
kurbo = { version = "0.13.0", default-features = false }
3838
smallvec = "1.15.1"
3939
bytemuck = { version = "1.23.2", default-features = false, optional = true }
4040
color = { version = "0.3.2", default-features = false }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The name "Peniko" is Esperanto for "brush" which is one family of types that the
1919

2020
## Minimum supported Rust Version (MSRV)
2121

22-
This version of Peniko has been verified to compile with **Rust 1.82** and later.
22+
This version of Peniko has been verified to compile with **Rust 1.85** and later.
2323

2424
Future versions of Peniko might increase the Rust version requirement.
2525
It will not be treated as a breaking change and as such can even happen with small patch releases.

0 commit comments

Comments
 (0)