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 @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.11.0] - 2026-06-29

This release matches HarfBuzz [v14.2.0](https://github.com/harfbuzz/harfbuzz/releases/tag/14.2.0),
and has an MSRV (minimum supported Rust version) of 1.85.

- Parse contextual lookup rules in a single pass in the apply path for improved performance (#383).
- Fix integer overflow in fallback positioning shaper (#395).
- Fix overflow panic in skipping_iterator_t when shaping extremely long lines (#397).
- Fix custom nominal glyph cmap caching (#399).

## [0.10.0] - 2026-06-20

This release matches HarfBuzz [v14.2.0](https://github.com/harfbuzz/harfbuzz/releases/tag/14.2.0),
Expand Down Expand Up @@ -209,7 +219,8 @@ This release matches HarfBuzz [v11.2.1][harfbuzz-11.2.1], and has an MSRV (minim
HarfRust is a fork of RustyBuzz.
See [their changelog](https://github.com/harfbuzz/rustybuzz/blob/main/CHANGELOG.md) for details of prior releases.

[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.10.0...HEAD
[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.11.0...HEAD
[0.11.0]: https://github.com/harfbuzz/harfrust/compare/0.10.0...0.11.0
[0.10.0]: https://github.com/harfbuzz/harfrust/compare/0.9.0...0.10.0
[0.9.0]: https://github.com/harfbuzz/harfrust/compare/0.8.4...0.9.0
[0.8.4]: https://github.com/harfbuzz/harfrust/compare/0.8.3...0.8.4
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["harfrust", "hr-shape", "fuzz"]
resolver = "2"

[workspace.package]
version = "0.10.0"
version = "0.11.0"
edition = "2021"
rust-version = "1.85" # should match https://github.com/googlefonts/fontations/blob/main/Cargo.toml
description = "A complete HarfBuzz shaping algorithm port to Rust."
Expand All @@ -23,7 +23,7 @@ inherits = "release"

[workspace.dependencies]
read-fonts = { version = "0.40.2", default-features = false, features = ["experimental_font_api"] }
harfrust = { version = "0.10.0", path = "./harfrust", default-features = false }
harfrust = { version = "0.11.0", path = "./harfrust", default-features = false }

[workspace.lints.rust]
unused_qualifications = "warn"
Expand Down