From ce01aa6e3ad8dc3ef5275b709791954fc54469a0 Mon Sep 17 00:00:00 2001 From: Colin Rofls Date: Wed, 19 Jul 2023 11:05:08 -0400 Subject: [PATCH] Bump crate versions --- font-codegen/Cargo.toml | 2 +- font-types/Cargo.toml | 2 +- otexplorer/Cargo.toml | 4 ++-- read-fonts/Cargo.toml | 4 ++-- skrifa/Cargo.toml | 6 +++--- write-fonts/Cargo.toml | 10 +++++----- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/font-codegen/Cargo.toml b/font-codegen/Cargo.toml index 1d13a00f3..ee4f0ad4b 100644 --- a/font-codegen/Cargo.toml +++ b/font-codegen/Cargo.toml @@ -12,7 +12,7 @@ name = "codegen" path = "src/main.rs" [dependencies] -font-types = { version = "0.3.2", path = "../font-types" } +font-types = { version = "0.3.3", path = "../font-types" } rustfmt-wrapper = "0.2" regex = "1.5" miette = { version = "5.0", features = ["fancy"] } diff --git a/font-types/Cargo.toml b/font-types/Cargo.toml index fa9149a1a..c30529cdd 100644 --- a/font-types/Cargo.toml +++ b/font-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "font-types" -version = "0.3.2" +version = "0.3.3" edition = "2021" license = "MIT/Apache-2.0" description = "Scalar types used in fonts." diff --git a/otexplorer/Cargo.toml b/otexplorer/Cargo.toml index a64363318..351c8bb96 100644 --- a/otexplorer/Cargo.toml +++ b/otexplorer/Cargo.toml @@ -8,8 +8,8 @@ publish = false [dependencies] xflags = "0.2.4" -read-fonts = { path = "../read-fonts",version = "0.7.0" } -font-types = { path = "../font-types",version = "0.3.2" } +read-fonts = { path = "../read-fonts",version = "0.8.0" } +font-types = { path = "../font-types",version = "0.3.3" } ansi_term = "0.12.1" atty = "0.2" diff --git a/read-fonts/Cargo.toml b/read-fonts/Cargo.toml index 2220bdf23..d72ecd127 100644 --- a/read-fonts/Cargo.toml +++ b/read-fonts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "read-fonts" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "MIT/Apache-2.0" description = "Reading OpenType font files." @@ -16,7 +16,7 @@ traversal = ["std"] default = ["traversal"] [dependencies] -font-types = { version = "0.3.2", path = "../font-types" } +font-types = { version = "0.3.3", path = "../font-types" } [dev-dependencies] font-test-data = { path = "../font-test-data" } diff --git a/skrifa/Cargo.toml b/skrifa/Cargo.toml index 41dc469eb..4b7dc25fc 100644 --- a/skrifa/Cargo.toml +++ b/skrifa/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "skrifa" -version = "0.6.0" +version = "0.7.0" edition = "2021" license = "MIT/Apache-2.0" description = "Metadata reader and glyph scaler for OpenType fonts." @@ -14,8 +14,8 @@ scale = [] hinting = [] [dependencies] -read-fonts = { version = "0.7.0", path = "../read-fonts" } +read-fonts = { version = "0.8.0", path = "../read-fonts" } [dev-dependencies] font-test-data= { path = "../font-test-data" } -read-fonts = { version = "0.7.0", path = "../read-fonts", features = ["scaler_test"] } +read-fonts = { version = "0.8.0", path = "../read-fonts", features = ["scaler_test"] } diff --git a/write-fonts/Cargo.toml b/write-fonts/Cargo.toml index 8be205c03..12b08d44f 100644 --- a/write-fonts/Cargo.toml +++ b/write-fonts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "write-fonts" -version = "0.10.1" +version = "0.11.0" edition = "2021" license = "MIT/Apache-2.0" description = "Writing font files." @@ -12,8 +12,8 @@ categories = ["text-processing", "parsing", "graphics"] default = ["dot2"] [dependencies] -font-types = { version = "0.3.2", path = "../font-types" } -read-fonts = { version = "0.7.0", path = "../read-fonts" } +font-types = { version = "0.3.3", path = "../font-types" } +read-fonts = { version = "0.8.0", path = "../read-fonts" } log = "0.4" kurbo = "0.9.4" dot2 = { version = "1.0", optional = true } @@ -22,6 +22,6 @@ dot2 = { version = "1.0", optional = true } diff = "0.1.12" ansi_term = "0.12.1" font-test-data = { path = "../font-test-data" } -read-fonts = { version = "0.7.0", path = "../read-fonts", features = [ "codegen_test"] } +read-fonts = { version = "0.8.0", path = "../read-fonts", features = [ "codegen_test"] } env_logger = "0.10.0" -rstest = "0.17.0" +rstest = "0.18.0"