Version bump.

This commit is contained in:
Yevhenii Reizner 2024-05-10 18:44:14 +03:00
parent 031bea4ee9
commit 6d6f75bb4c
3 changed files with 13 additions and 4 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "rustybuzz"
version = "0.13.0"
version = "0.14.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
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",

View File

@ -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?