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 read/skrifa patch version #772

Merged
merged 1 commit into from
Feb 6, 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
2 changes: 1 addition & 1 deletion fauntlet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
publish = false

[dependencies]
skrifa = { version = "0.15.4", path = "../skrifa" }
skrifa = { version = "0.15.5", path = "../skrifa" }
freetype-rs = "0.32.0"
memmap2 = "0.5.10"
rayon = "1.8.0"
Expand Down
2 changes: 1 addition & 1 deletion otexplorer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false

[dependencies]
xflags = "0.3.0"
read-fonts = { path = "../read-fonts",version = "0.15.2" }
read-fonts = { path = "../read-fonts",version = "0.15.3" }
font-types = { path = "../font-types",version = "0.4.2" }
ansi_term = "0.12.1"
atty = "0.2"
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.15.2"
version = "0.15.3"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Reading OpenType font files."
Expand Down
6 changes: 3 additions & 3 deletions skrifa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skrifa"
version = "0.15.4"
version = "0.15.5"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Metadata reader and glyph scaler for OpenType fonts."
Expand All @@ -9,11 +9,11 @@ readme = "README.md"
categories = ["text-processing", "parsing", "graphics"]

[dependencies]
read-fonts = { version = "0.15.2", path = "../read-fonts" }
read-fonts = { version = "0.15.3", path = "../read-fonts" }

[dev-dependencies]
font-test-data = { path = "../font-test-data" }
read-fonts = { version = "0.15.2", path = "../read-fonts", features = [
read-fonts = { version = "0.15.3", path = "../read-fonts", features = [
"scaler_test",
"serde",
] }
Expand Down
2 changes: 1 addition & 1 deletion skrifa/src/outline/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Loading, scaling and hinting of glyph outlines.
//!
//! This module provides support for retrieving (optinally scaled and hinted)
//! This module provides support for retrieving (optionally scaled and hinted)
//! glyph outlines in the form of vector paths.
//!
//! # Drawing a glyph
Expand Down
4 changes: 2 additions & 2 deletions write-fonts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde = ["dep:serde", "font-types/serde", "read-fonts/serde"]

[dependencies]
font-types = { version = "0.4.2", path = "../font-types" }
read-fonts = { version = "0.15.2", path = "../read-fonts" }
read-fonts = { version = "0.15.3", path = "../read-fonts" }
log = "0.4"
kurbo = "0.10.2"
dot2 = { version = "1.0", optional = true }
Expand All @@ -26,7 +26,7 @@ indexmap = "2.0"
diff = "0.1.12"
ansi_term = "0.12.1"
font-test-data = { path = "../font-test-data" }
read-fonts = { version = "0.15.2", path = "../read-fonts", features = [ "codegen_test"] }
read-fonts = { version = "0.15.3", path = "../read-fonts", features = [ "codegen_test"] }
env_logger = "0.10.0"
rstest = "0.18.0"
pretty_assertions.workspace = true
Expand Down
Loading