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
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.12.0] - 2026-07-03

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.

- Update `read-fonts` to 0.41.0 (#403).
- Saturate AAT kerning position accumulation to avoid overflow (#400).
- Regenerate the Unicode data tables with the latest `packtab` (#401).
- Keep GPOS variation-index deltas fractional to match HarfBuzz, avoiding
sub-font-unit advance and placement differences on variable fonts (#403).
- Keep AAT `trak` tracking fractional to match HarfBuzz (#404).

## [0.11.0] - 2026-06-29

This release matches HarfBuzz [v14.2.0](https://github.com/harfbuzz/harfbuzz/releases/tag/14.2.0),
Expand Down Expand Up @@ -219,7 +231,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.11.0...HEAD
[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.12.0...HEAD
[0.12.0]: https://github.com/harfbuzz/harfrust/compare/0.11.0...0.12.0
[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
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.11.0"
version = "0.12.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.41.0", default-features = false, features = ["experimental_font_api"] }
harfrust = { version = "0.11.0", path = "./harfrust", default-features = false }
harfrust = { version = "0.12.0", path = "./harfrust", default-features = false }

[workspace.lints.rust]
unused_qualifications = "warn"
Expand Down
65 changes: 0 additions & 65 deletions scripts/bump-version.sh

This file was deleted.