Skip to content

Commit

Permalink
Bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyr committed Jul 19, 2023
1 parent 4bc15e4 commit ce01aa6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
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.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"] }
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.3.2"
version = "0.3.3"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Scalar types used in fonts."
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.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"

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.7.0"
version = "0.8.0"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Reading OpenType font files."
Expand All @@ -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" }
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.6.0"
version = "0.7.0"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Metadata reader and glyph scaler for OpenType fonts."
Expand All @@ -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"] }
10 changes: 5 additions & 5 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.10.1"
version = "0.11.0"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Writing font files."
Expand All @@ -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 }
Expand All @@ -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"

0 comments on commit ce01aa6

Please sign in to comment.