Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare Parley and Fontique 0.2.0 #130

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
2 changes: 1 addition & 1 deletion fontique/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably use version.workspace = true

Copy link
Member Author

@xorgy xorgy Oct 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it is likely we end up releasing Fontique less often than Parley. For example I can't think of any breaking changes proposed for Fontique before Parley 0.3 right now. The fact that they both had breaking changes this time around is more of a coincidence than a pattern.

Copy link
Member

@DJMcNab DJMcNab Oct 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using the same release schedule and tagging for both is probably simpler, would be my claim.
Additionally, since they share a changelog, and a Fontique release requires a Parley release, mirroring that dependency probably doesn't really hurt things.

Especially since Fontique depends on Skrifa, any Parley release will realistically need a Fontique release anyway - Skrifa releases extremely often.

description = "Font enumeration and fallback."
keywords = ["font", "text"]
categories = ["gui", "os"]
Expand Down
2 changes: 1 addition & 1 deletion parley/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down