diff --git a/CHANGELOG.md b/CHANGELOG.md index 154c382..5856216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,18 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe # Changelog -The latest published Parley release is [0.1.0](#010---2024-05-01) which was released on 2024-05-01. -You can find its changes [documented below](#010---2024-05-01). +The latest published Parley release is [0.2.0](#020---2024-10-10) which was released on 2024-10-10. +You can find its changes [documented below](#020---2024-10-10). ## [Unreleased] This release has an [MSRV] of 1.75. + +## [0.2.0] - 2024-10-10 + +This release has an [MSRV] of 1.75. + ### Added #### Parley @@ -82,5 +87,6 @@ This release has an [MSRV] of 1.70. [#126]: https://github.com/linebender/parley/pull/126 [#129]: https://github.com/linebender/parley/pull/129 -[Unreleased]: https://github.com/linebender/parley/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/linebender/parley/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/linebender/parley/releases/tag/v0.2.0 [0.1.0]: https://github.com/linebender/parley/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index d3cc456..971ec75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -736,7 +736,7 @@ dependencies = [ [[package]] name = "fontique" -version = "0.1.0" +version = "0.2.0" dependencies = [ "core-foundation", "core-text", @@ -1802,7 +1802,7 @@ dependencies = [ [[package]] name = "parley" -version = "0.1.0" +version = "0.2.0" dependencies = [ "fontique", "peniko", diff --git a/Cargo.toml b/Cargo.toml index 0ea661b..e9a9762 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,8 +23,8 @@ clippy.trivially_copy_pass_by_ref = "warn" rust.unused_qualifications = "warn" [workspace.dependencies] -fontique = { version = "0.1.0", default-features = false, path = "fontique" } -parley = { version = "0.1.0", default-features = false, path = "parley" } +fontique = { version = "0.2.0", default-features = false, path = "fontique" } +parley = { version = "0.2.0", default-features = false, path = "parley" } peniko = { version = "0.2.0", default-features = false } skrifa = { version = "0.22.3", default-features = false } swash = { version = "0.1.19", default-features = false } diff --git a/fontique/Cargo.toml b/fontique/Cargo.toml index ba1a73d..23f2ea8 100644 --- a/fontique/Cargo.toml +++ b/fontique/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fontique" -version = "0.1.0" # Keep in sync with workspace dependency specification +version = "0.2.0" # Keep in sync with workspace dependency specification description = "Font enumeration and fallback." keywords = ["font", "text"] categories = ["gui", "os"] diff --git a/parley/Cargo.toml b/parley/Cargo.toml index 3726d08..e7526a6 100644 --- a/parley/Cargo.toml +++ b/parley/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parley" -version = "0.1.0" +version = "0.2.0" description = "Parley provides an API for implementing rich text layout." keywords = ["text", "layout"] categories = ["gui", "graphics"]