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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

This release has an [MSRV] of 1.88.

## [0.11.1] - 2026-08-16

This release has an [MSRV] of 1.88.

### Changed

#### Parley

- Upgrade to `read-fonts` 0.41, `skrifa` 0.44, `harfrust` 0.12 (by [@nicoburns][])

## [0.11.0] - 2026-06-24

This release has an [MSRV] of 1.88.
Expand Down Expand Up @@ -682,7 +692,8 @@ This release has an [MSRV][] of 1.70.
[#643]: https://github.com/linebender/parley/pull/643
[#650]: https://github.com/linebender/parley/pull/650

[Unreleased]: https://github.com/linebender/parley/compare/v0.11.0...HEAD
[Unreleased]: https://github.com/linebender/parley/compare/v0.11.1...HEAD
[0.11.1]: https://github.com/linebender/parley/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/linebender/parley/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/linebender/parley/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/linebender/parley/compare/v0.8.0...v0.9.0
Expand Down
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ members = [

[workspace.package]
edition = "2021"
version = "0.11.0"
version = "0.11.1"
# Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the relevant README.md files
# and with the MSRV in the `Unreleased` section of CHANGELOG.md.
# Until MSRV is bumped to 1.96+, use `core::ops::Range*` rather than `core::range::Range*`.
Expand All @@ -35,17 +35,17 @@ repository = "https://github.com/linebender/parley"
[workspace.dependencies]
# Local crates
parlance = { version = "0.1.0", default-features = false, path = "parlance" }
fontique = { version = "0.11.0", default-features = false, path = "fontique" }
parley = { version = "0.11.0", default-features = false, path = "parley" }
parley_data = { version = "0.11.0", path = "parley_data", default-features = false }
fontique = { version = "0.11.1", default-features = false, path = "fontique" }
parley = { version = "0.11.1", default-features = false, path = "parley" }
parley_data = { version = "0.11.1", path = "parley_data", default-features = false }
parley_data_gen = { path = "parley_data_gen" }
parley_dev = { default-features = false, path = "parley_dev" }
parley_linebreaking_cases = { path = "parley_tests/linebreaking_cases" }

# External dependencies
accesskit = "0.24.0"
bytemuck = { version = "1.25.0", default-features = false }
harfrust = { version = "0.10.0", default-features = false }
harfrust = { version = "0.12.0", default-features = false }
hashbrown = { version = "0.17.0", default-features = false, features = [
"default-hasher",
"raw-entry",
Expand All @@ -60,8 +60,8 @@ glifo = { git = "https://github.com/linebender/vello", rev = "5796226", default-
rand = { version = "0.10.1", default-features = false, features = ["std", "std_rng"] }
rand_chacha = { version = "0.10.0", default-features = false }
peniko = { version = "0.6.0", default-features = false }
read-fonts = { version = "0.40.0", default-features = false }
skrifa = { version = "0.43.2", default-features = false }
read-fonts = { version = "0.41.0", default-features = false }
skrifa = { version = "0.44.0", default-features = false }
smallvec = "1.15.1"
swash = { version = "0.2.6", default-features = false }
vello_common = { version = "0.0.7", default-features = false }
Expand Down
Loading