diff --git a/ssbh_data/Cargo.toml b/ssbh_data/Cargo.toml index 6c719c6..dc9ba60 100644 --- a/ssbh_data/Cargo.toml +++ b/ssbh_data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssbh_data" -version = "0.18.0" +version = "0.19.0" authors = ["ScanMountGoat <>"] description = "High level data access layer for SSBH formats" license = "MIT" @@ -9,8 +9,8 @@ repository = "https://github.com/ultimate-research/ssbh_lib" edition = "2021" [dependencies] -ssbh_lib = { version = "^0.18", path = "../ssbh_lib", default-features = false } -ssbh_write = { version = "^0.18", path = "../ssbh_write" } +ssbh_lib = { version = "^0.19", path = "../ssbh_lib", default-features = false } +ssbh_write = { version = "^0.19", path = "../ssbh_write" } binrw = "0.14.0" half = "2.1.0" geometry_tools = "0.6.0" diff --git a/ssbh_data_json/Cargo.toml b/ssbh_data_json/Cargo.toml index 795c514..6420723 100644 --- a/ssbh_data_json/Cargo.toml +++ b/ssbh_data_json/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "ssbh_data_json" -version = "0.18.0" +version = "0.19.0" edition = "2021" [dependencies] -ssbh_data = { version = "^0.18", path = "../ssbh_data", features = ["serde"] } +ssbh_data = { version = "^0.19", path = "../ssbh_data", features = ["serde"] } serde_json = "1.0" serde = { version = "1.0" } clap = { version = "4.3.0", features = ["derive"] } diff --git a/ssbh_lib/Cargo.toml b/ssbh_lib/Cargo.toml index 4fab0cd..97b4de8 100644 --- a/ssbh_lib/Cargo.toml +++ b/ssbh_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssbh_lib" -version = "0.18.0" +version = "0.19.0" authors = ["ScanMountGoat <>"] description = "Reading and writing SSBH file formats in Rust" license = "MIT" @@ -9,7 +9,7 @@ repository = "https://github.com/ultimate-research/ssbh_lib" edition = "2021" [dependencies] -ssbh_write = { path = "../ssbh_write", version = "^0.18" } +ssbh_write = { path = "../ssbh_write", version = "^0.19" } binrw = "0.14.0" modular-bitfield = "0.11.2" thiserror = "1.0" diff --git a/ssbh_lib_json/Cargo.toml b/ssbh_lib_json/Cargo.toml index a45fbf1..b92c272 100644 --- a/ssbh_lib_json/Cargo.toml +++ b/ssbh_lib_json/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "ssbh_lib_json" -version = "0.18.0" +version = "0.19.0" authors = ["ScanMountGoat <>"] edition = "2021" [dependencies] -ssbh_lib = { version = "^0.18", path = "../ssbh_lib", default-features = false, features = ["serde_hex"] } +ssbh_lib = { version = "^0.19", path = "../ssbh_lib", default-features = false, features = ["serde_hex"] } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } clap = { version = "4.3.0", features = ["derive"] } diff --git a/ssbh_test/Cargo.toml b/ssbh_test/Cargo.toml index da5ac2a..dbe1cde 100644 --- a/ssbh_test/Cargo.toml +++ b/ssbh_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssbh_test" -version = "0.18.0" +version = "0.19.0" edition = "2021" [dependencies] diff --git a/ssbh_write/Cargo.toml b/ssbh_write/Cargo.toml index 591a009..00f0a78 100644 --- a/ssbh_write/Cargo.toml +++ b/ssbh_write/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssbh_write" -version = "0.18.0" +version = "0.19.0" description = "ssbh_lib write trait" license = "MIT" repository = "https://github.com/ultimate-research/ssbh_lib" @@ -8,4 +8,4 @@ authors = ["ScanMountGoat <>"] edition = "2021" [dependencies] -ssbh_write_derive = { version = "^0.18", path = "../ssbh_write_derive" } +ssbh_write_derive = { version = "^0.19", path = "../ssbh_write_derive" } diff --git a/ssbh_write_derive/Cargo.toml b/ssbh_write_derive/Cargo.toml index bab75c8..e479613 100644 --- a/ssbh_write_derive/Cargo.toml +++ b/ssbh_write_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ssbh_write_derive" -version = "0.18.0" +version = "0.19.0" description = "ssbh_write derive macro" license = "MIT" repository = "https://github.com/ultimate-research/ssbh_lib"