Version bump.
This commit is contained in:
parent
031bea4ee9
commit
6d6f75bb4c
11
CHANGELOG.md
11
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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue