Skip to content

Commit efdae31

Browse files
committed
0.5.2
1 parent 553cfeb commit efdae31

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [0.5.2] - 2026-03-04
11+
12+
This release matches HarfBuzz [v13.0.0][harfbuzz-13.0.0], and has an MSRV (minimum supported Rust version) of 1.85.
13+
14+
Fix `hr-shape` dependency, so we can publish on crates.io.
15+
1016
## [0.5.1] - 2026-03-04
1117

1218
This release matches HarfBuzz [v13.0.0][harfbuzz-13.0.0], and has an MSRV (minimum supported Rust version) of 1.85.
@@ -97,7 +103,8 @@ This release matches HarfBuzz [v11.2.1][harfbuzz-11.2.1], and has an MSRV (minim
97103
HarfRust is a fork of RustyBuzz.
98104
See [their changelog](https://github.com/harfbuzz/rustybuzz/blob/main/CHANGELOG.md) for details of prior releases.
99105

100-
[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.5.1...HEAD
106+
[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.5.2...HEAD
107+
[0.5.2]: https://github.com/harfbuzz/harfrust/compare/0.5.1...0.5.2
101108
[0.5.1]: https://github.com/harfbuzz/harfrust/compare/0.5.0...0.5.1
102109
[0.5.0]: https://github.com/harfbuzz/harfrust/compare/0.4.1...0.5.0
103110
[0.4.1]: https://github.com/harfbuzz/harfrust/compare/0.4.0...0.4.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["harfrust", "hr-shape"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.5.1"
6+
version = "0.5.2"
77
edition = "2021"
88
rust-version = "1.85" # should match https://github.com/googlefonts/fontations/blob/main/Cargo.toml
99
description = "A complete HarfBuzz shaping algorithm port to Rust."

hr-shape/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories.workspace = true
1212

1313
[dependencies]
1414
clap = { version = "4", features = ["derive"] }
15-
harfrust = { path = "../harfrust", default-features = false, features = ["std"] }
15+
harfrust = { version = "0.5.2", path = "../harfrust", default-features = false, features = ["std"] }
1616

1717
[[bin]]
1818
name = "hr-shape"

0 commit comments

Comments
 (0)