diff --git a/CHANGELOG.md b/CHANGELOG.md index b5215bac..dd120999 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.14.0] - 2024-05-10 +- Sync with HarfBuzz 4.3.0. + Thanks to [@Pi-Cla](https://github.com/Pi-Cla) and [@LaurenzV](https://github.com/LaurenzV). + +### Changed +- Bump `ttf-parser`. +- Bump Rust Edition to 2021. + ## [0.13.0] - 2024-02-18 - Sync with HarfBuzz 4.1.0. Thanks to [@LaurenzV](https://github.com/LaurenzV). @@ -179,7 +187,8 @@ At this point, this is just a simple Rust bindings to a stripped down harfbuzz. Embedded harfbuzz relies only on internal TrueType implementation. - Most of the non-shaping harfbuzz API. -[Unreleased]: https://github.com/RazrFalcon/rustybuzz/compare/v0.13.0...HEAD +[Unreleased]: https://github.com/RazrFalcon/rustybuzz/compare/v0.14.0...HEAD +[0.14.0]: https://github.com/RazrFalcon/rustybuzz/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/RazrFalcon/rustybuzz/compare/v0.12.1...v0.13.0 [0.12.1]: https://github.com/RazrFalcon/rustybuzz/compare/v0.12.0...v0.12.1 [0.12.0]: https://github.com/RazrFalcon/rustybuzz/compare/v0.11.0...v0.12.0 diff --git a/Cargo.toml b/Cargo.toml index 0c410be3..ea72f223 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustybuzz" -version = "0.13.0" +version = "0.14.0" authors = ["Evgeniy Reizner "] edition = "2021" description = "A complete harfbuzz shaping algorithm port to Rust." @@ -23,7 +23,7 @@ unicode-script = "0.5.2" libm = { version = "0.2.2", optional = true } [dependencies.ttf-parser] -version = "0.20.0" +version = "0.21.0" default-features = false features = [ "opentype-layout", diff --git a/README.md b/README.md index 61a709b7..3f998de4 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you are interested in helping the project checkout `rustybuzz` is a complete [harfbuzz](https://github.com/harfbuzz/harfbuzz)'s shaping algorithm port to Rust. -Matches `harfbuzz` v4.1.0 +Matches `harfbuzz` v4.3.0 ## Why?