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

[chore] Bump versions #1341

Merged
merged 1 commit into from
Feb 4, 2025
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
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ core_maths = "0.1"
# that want default features will have to enable them directly.
font-test-data = { path = "font-test-data" }
font-types = { version = "0.8.2", path = "font-types" }
read-fonts = { version = "0.25.3", path = "read-fonts", default-features = false }
read-fonts = { version = "0.26.0", path = "read-fonts", default-features = false }
# Disable default-features so that fauntlet can use skrifa without autohint
# shaping support
skrifa = { version = "0.26.5", path = "skrifa", default-features = false, features = ["std"] }
write-fonts = { version = "0.33.1", path = "write-fonts" }
skrifa = { version = "0.27.0", path = "skrifa", default-features = false, features = ["std"] }
write-fonts = { version = "0.34.0", path = "write-fonts" }
shared-brotli-patch-decoder = { version = "0.1.0", path = "shared-brotli-patch-decoder" }
incremental-font-transfer = { version = "0.1.0", path = "incremental-font-transfer" }
klippa = { version = "0.1.0", path = "klippa" }
Expand Down
2 changes: 1 addition & 1 deletion font-test-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "font-test-data"
version = "0.2.1"
version = "0.3.0"
description = "Test data for the fontations crates"
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion read-fonts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "read-fonts"
version = "0.25.3"
version = "0.26.0"
description = "Reading OpenType font files."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
Expand Down
2 changes: 1 addition & 1 deletion read-fonts/src/tables/hhea.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
include!("../../generated/generated_hhea.rs");

impl Hhea<'_> {
#[deprecated(since = "0.25.3", note = "use number_of_h_metrics instead")]
#[deprecated(since = "0.26.0", note = "use number_of_h_metrics instead")]
pub fn number_of_long_metrics(&self) -> u16 {
self.number_of_h_metrics()
}
Expand Down
2 changes: 1 addition & 1 deletion skrifa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skrifa"
version = "0.26.5"
version = "0.27.0"
description = "Metadata reader and glyph scaler for OpenType fonts."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
Expand Down
2 changes: 1 addition & 1 deletion write-fonts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "write-fonts"
version = "0.33.1"
version = "0.34.0"
description = "Writing font files."
readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]
Expand Down