Skip to content

Commit 447e3e6

Browse files
authored
Release 0.3.0 (#265)
* Release 0.2.1 * Update CHANGELOG.md * match HB 11.5.0 * Release 0.3.0
1 parent 75721d4 commit 447e3e6

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0] - 2025-09-12
11+
12+
This release matches HarfBuzz [v11.5.0][harfbuzz-11.5.0], and has an MSRV (minimum supported Rust version) of 1.82.
13+
14+
- Update to read-fonts 0.35.0.
15+
- Bump MSRV from 1.80 to 1.82.
16+
1017
## [0.2.1] - 2025-09-12
1118

1219
This release matches HarfBuzz [v11.5.0][harfbuzz-11.5.0], and has an MSRV (minimum supported Rust version) of 1.80.
@@ -44,7 +51,8 @@ This release matches HarfBuzz [v11.2.1][harfbuzz-11.2.1], and has an MSRV (minim
4451
HarfRust is a fork of RustyBuzz.
4552
See [their changelog](https://github.com/harfbuzz/rustybuzz/blob/main/CHANGELOG.md) for details of prior releases.
4653

47-
[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.2.1...HEAD
54+
[Unreleased]: https://github.com/harfbuzz/harfrust/compare/0.3.0...HEAD
55+
[0.3.0]: https://github.com/harfbuzz/harfrust/compare/0.2.1...0.3.0
4856
[0.2.1]: https://github.com/harfbuzz/harfrust/compare/0.2.0...0.2.1
4957
[0.2.0]: https://github.com/harfbuzz/harfrust/compare/0.1.2...0.2.0
5058
[0.1.2]: https://github.com/harfbuzz/harfrust/compare/0.1.1...0.1.2

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harfrust"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.80" # should match https://github.com/googlefonts/fontations/blob/main/Cargo.toml
66
description = "A complete HarfBuzz shaping algorithm port to Rust."
@@ -14,7 +14,7 @@ exclude = ["benches/", "tests/"]
1414
bitflags = "2.9"
1515
bytemuck = { version = "1.22", features = ["extern_crate_alloc"] }
1616
core_maths = "0.1" # only for no_std builds
17-
read-fonts = { version = "0.34.0", default-features = false, features = ["libm"] }
17+
read-fonts = { version = "0.35.0", default-features = false, features = ["libm"] }
1818
# read-fonts = { git = "https://github.com/googlefonts/fontations", default-features = false, features = ["libm"] }
1919
smallvec = "1.14"
2020

0 commit comments

Comments
 (0)