Skip to content

Commit

Permalink
Merge pull request #921 from googlefonts/version-bumps
Browse files Browse the repository at this point in the history
[chore] Bump versions
  • Loading branch information
anthrotype authored May 30, 2024
2 parents e2a07db + 8fa2f6e commit cefa7e5
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
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.19.2", path = "../skrifa" }
skrifa = { version = "0.19.3", path = "../skrifa" }
freetype-rs = "0.32.0"
memmap2 = "0.5.10"
rayon = "1.8.0"
Expand Down
2 changes: 1 addition & 1 deletion font-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "codegen"
path = "src/main.rs"

[dependencies]
font-types = { version = "0.5.4", path = "../font-types" }
font-types = { version = "0.5.5", path = "../font-types" }
rustfmt-wrapper = "0.2"
regex = "1.5"
miette = { version = "5.0", features = ["fancy"] }
Expand Down
2 changes: 1 addition & 1 deletion font-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "font-types"
version = "0.5.4"
version = "0.5.5"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Scalar types used in fonts."
Expand Down
2 changes: 1 addition & 1 deletion int-set/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
description = "A fast sparse and invertible bit set for u32's. Port of harfbuzz's hb_set_t."

[dependencies]
font-types = { version = "0.5.4", path = "../font-types"}
font-types = { version = "0.5.5", path = "../font-types"}

[dev-dependencies]
criterion = "0.5.1"
Expand Down
4 changes: 2 additions & 2 deletions otexplorer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ publish = false

[dependencies]
xflags = "0.3.0"
read-fonts = { path = "../read-fonts",version = "0.19.2" }
font-types = { path = "../font-types",version = "0.5.4" }
read-fonts = { path = "../read-fonts",version = "0.19.3" }
font-types = { path = "../font-types",version = "0.5.5" }
ansi_term = "0.12.1"
atty = "0.2"

Expand Down
4 changes: 2 additions & 2 deletions read-fonts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "read-fonts"
version = "0.19.2"
version = "0.19.3"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Reading OpenType font files."
Expand All @@ -17,7 +17,7 @@ default = ["traversal"]
serde = ["dep:serde", "font-types/serde"]

[dependencies]
font-types = { version = "0.5.4", path = "../font-types", features = ["bytemuck"] }
font-types = { version = "0.5.5", path = "../font-types", features = ["bytemuck"] }
serde = { version = "1.0", features = ["derive"], optional = true }
bytemuck = { workspace = true }

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.19.2"
version = "0.19.3"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Metadata reader and glyph scaler for OpenType fonts."
Expand All @@ -15,13 +15,13 @@ traversal = ["std", "read-fonts/traversal"]
libm = ["dep:core_maths"]

[dependencies]
read-fonts = { version = "0.19.2", path = "../read-fonts", default-features = false }
read-fonts = { version = "0.19.3", path = "../read-fonts", default-features = false }
core_maths = { version = "0.1", optional = true }
bytemuck = { workspace = true }

[dev-dependencies]
font-test-data = { path = "../font-test-data" }
read-fonts = { version = "0.19.2", path = "../read-fonts", features = [
read-fonts = { version = "0.19.3", path = "../read-fonts", features = [
"scaler_test",
"serde",
] }
Expand Down
8 changes: 4 additions & 4 deletions write-fonts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "write-fonts"
version = "0.26.1"
version = "0.26.2"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Writing font files."
Expand All @@ -14,8 +14,8 @@ read = []
serde = ["dep:serde", "font-types/serde", "read-fonts/serde"]

[dependencies]
font-types = { version = "0.5.4", path = "../font-types" }
read-fonts = { version = "0.19.2", path = "../read-fonts" }
font-types = { version = "0.5.5", path = "../font-types" }
read-fonts = { version = "0.19.3", path = "../read-fonts" }
log = "0.4"
kurbo.workspace = true
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.19.2", path = "../read-fonts", features = [
read-fonts = { version = "0.19.3", path = "../read-fonts", features = [
"codegen_test",
] }
rstest = "0.18.0"
Expand Down

0 comments on commit cefa7e5

Please sign in to comment.