Skip to content

Commit 5d70677

Browse files
committed
Prepare Parley and Fontique 0.3.0
Signed-off-by: Nico Burns <[email protected]>
1 parent 7c8983c commit 5d70677

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe
88

99
# Changelog
1010

11-
The latest published Parley release is [0.2.0](#020---2024-10-10) which was released on 2024-10-10.
12-
You can find its changes [documented below](#020---2024-10-10).
11+
The latest published Parley release is [0.3.0](#030---2025-02-10) which was released on 2025-02-10.
12+
You can find its changes [documented below](#030---2025-02-10).
1313

1414
## [Unreleased]
1515

1616
This release has an [MSRV] of 1.82.
1717

18+
## [0.3.0] - 2025-02-10
19+
20+
This release has an [MSRV] of 1.82.
21+
1822
### Added
1923

2024
#### Fontique
@@ -133,6 +137,7 @@ This release has an [MSRV] of 1.70.
133137
[#268]: https://github.com/linebender/parley/pull/268
134138
[#271]: https://github.com/linebender/parley/pull/271
135139

136-
[Unreleased]: https://github.com/linebender/parley/compare/v0.2.0...HEAD
140+
[Unreleased]: https://github.com/linebender/parley/compare/v0.3.0...HEAD
141+
[0.3.0]: https://github.com/linebender/parley/releases/tag/v0.3.0
137142
[0.2.0]: https://github.com/linebender/parley/releases/tag/v0.2.0
138143
[0.1.0]: https://github.com/linebender/parley/releases/tag/v0.1.0

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ clippy.wildcard_dependencies = "warn"
6868
[workspace.dependencies]
6969
accesskit = "0.17"
7070
bytemuck = { version = "1.21.0", default-features = false }
71-
fontique = { version = "0.2.0", default-features = false, path = "fontique" }
71+
fontique = { version = "0.3.0", default-features = false, path = "fontique" }
7272
hashbrown = "0.15.2"
73-
parley = { version = "0.2.0", default-features = false, path = "parley" }
73+
parley = { version = "0.3.0", default-features = false, path = "parley" }
7474
peniko = { version = "0.3.1", default-features = false }
7575
skrifa = { version = "0.26.5", default-features = false }
7676
read-fonts = { version = "0.25.3", default-features = false }

fontique/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fontique"
3-
version = "0.2.0" # Keep in sync with workspace dependency specification
3+
version = "0.3.0" # Keep in sync with workspace dependency specification
44
description = "Font enumeration and fallback."
55
keywords = ["font", "text"]
66
categories = ["gui", "os"]

parley/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parley"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Parley provides an API for implementing rich text layout."
55
keywords = ["text", "layout"]
66
categories = ["gui", "graphics"]

0 commit comments

Comments
 (0)