From 442cedb612afbc64de1fd4c830d0c8be6294c065 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 12 Nov 2024 12:46:42 +0300 Subject: [PATCH 1/2] chore: Update cargo authors metadata to current maintainer list --- Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c61621a9..ac7e9ebf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,12 @@ [package] name = "rustybuzz" version = "0.20.0" -authors = ["Yevhenii Reizner "] +authors = [ + "Caleb Maclennan ", + "Laurenz Stampfl ", + "Yevhenii Reizner ", + "خالد حسني (Khaled Hosny) " +] edition = "2021" description = "A complete harfbuzz shaping algorithm port to Rust." documentation = "https://docs.rs/rustybuzz/" From be4f7f3f38174a616682d187c45647bd9680d6c1 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 12 Nov 2024 12:34:32 +0300 Subject: [PATCH 2/2] chore: Release 0.20.1 --- CHANGELOG.md | 11 ++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 268c7a19..95007a92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.20.1] - 2024-10-12 +### Changed +- Update canonical repository location +- Address Clippy lints + +### Fixed +- Track HarfBuzz's signed/unsigned integer types to avoid overflows + ## [0.20.0] - 2024-10-04 ### Changed - Bump `ttf-parser`. @@ -247,7 +255,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/harfbuzz/rustybuzz/compare/v0.20.0...HEAD +[Unreleased]: https://github.com/harfbuzz/rustybuzz/compare/v0.20.1...HEAD +[0.20.1]: https://github.com/harfbuzz/rustybuzz/compare/v0.20.0...v0.20.1 [0.20.0]: https://github.com/harfbuzz/rustybuzz/compare/v0.19.0...v0.20.0 [0.19.0]: https://github.com/harfbuzz/rustybuzz/compare/v0.18.0...v0.19.0 [0.18.0]: https://github.com/harfbuzz/rustybuzz/compare/v0.17.0...v0.18.0 diff --git a/Cargo.lock b/Cargo.lock index c21fd478..ab518390 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,7 +154,7 @@ dependencies = [ [[package]] name = "rustybuzz" -version = "0.20.0" +version = "0.20.1" dependencies = [ "bitflags", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index ac7e9ebf..5da71347 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustybuzz" -version = "0.20.0" +version = "0.20.1" authors = [ "Caleb Maclennan ", "Laurenz Stampfl ",