Skip to content

Commit

Permalink
(cargo-release) bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ScanMountGoat committed May 8, 2023
1 parent 2db10c0 commit a7e3b6d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[workspace]
members = [ "ssbh_lib_json", "ssbh_data", "ssbh_write", "ssbh_write_derive", "ssbh_data_json" ]
members = [ "ssbh_lib_json", "ssbh_data", "ssbh_write", "ssbh_write_derive", "ssbh_data_json" ]
8 changes: 4 additions & 4 deletions ssbh_data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssbh_data"
version = "0.16.0"
version = "0.17.0"
authors = ["ScanMountGoat <>"]
description = "High level data access layer for SSBH formats"
license = "MIT"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/ultimate-research/ssbh_lib"
edition = "2021"

[dependencies]
ssbh_lib = { version = "^0.16", path = "../ssbh_lib", default_features = false }
ssbh_write = { version = "^0.16", path = "../ssbh_write" }
ssbh_lib = { version = "^0.17", path = "../ssbh_lib", default_features = false }
ssbh_write = { version = "^0.17", path = "../ssbh_write" }
binrw = "0.11.1"
half = "2.1.0"
geometry_tools = "0.4.2"
Expand All @@ -33,4 +33,4 @@ pretty_assertions = "1.2.1"
[features]
arbitrary = ["dep:arbitrary", "ssbh_lib/arbitrary"]
serde = ["dep:serde", "ssbh_lib/serde", "ssbh_lib/serde_bytes"]
strum = ["dep:strum", "ssbh_lib/strum"]
strum = ["dep:strum", "ssbh_lib/strum"]
4 changes: 2 additions & 2 deletions ssbh_data_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "ssbh_data_json"
version = "0.16.0"
version = "0.17.0"
edition = "2021"

[dependencies]
ssbh_data = { version = "^0.16", path = "../ssbh_data", features = ["serde"] }
ssbh_data = { version = "^0.17", path = "../ssbh_data", features = ["serde"] }
serde_json = "1.0"
serde = { version = "1.0" }
4 changes: 2 additions & 2 deletions ssbh_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssbh_lib"
version = "0.16.0"
version = "0.17.0"
authors = ["ScanMountGoat <>"]
description = "Reading and writing SSBH file formats in Rust"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/ultimate-research/ssbh_lib"
edition = "2021"

[dependencies]
ssbh_write = { path = "../ssbh_write", version = "^0.16" }
ssbh_write = { path = "../ssbh_write", version = "^0.17" }
binrw = "0.11.1"
modular-bitfield = "0.11.2"
thiserror = "1.0.29"
Expand Down
4 changes: 2 additions & 2 deletions ssbh_lib_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "ssbh_lib_json"
version = "0.16.0"
version = "0.17.0"
authors = ["ScanMountGoat <>"]
edition = "2021"

[dependencies]
ssbh_lib = { version = "^0.16", path = "../ssbh_lib", default-features = false, features = ["serde_hex"] }
ssbh_lib = { version = "^0.17", path = "../ssbh_lib", default-features = false, features = ["serde_hex"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
4 changes: 2 additions & 2 deletions ssbh_write/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "ssbh_write"
version = "0.16.0"
version = "0.17.0"
description = "ssbh_lib write trait"
license = "MIT"
repository = "https://github.com/ultimate-research/ssbh_lib"
authors = ["ScanMountGoat <>"]
edition = "2021"

[dependencies]
ssbh_write_derive = { version = "^0.16", path = "../ssbh_write_derive" }
ssbh_write_derive = { version = "^0.17", path = "../ssbh_write_derive" }
2 changes: 1 addition & 1 deletion ssbh_write_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ssbh_write_derive"
version = "0.16.0"
version = "0.17.0"
description = "ssbh_write derive macro"
license = "MIT"
repository = "https://github.com/ultimate-research/ssbh_lib"
Expand Down

0 comments on commit a7e3b6d

Please sign in to comment.