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 Oct 31, 2024
1 parent 8a280bf commit 45c5506
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion xc3_gltf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_gltf"
version = "0.13.0"
version = "0.14.0"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions xc3_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_lib"
version = "0.13.0"
version = "0.14.0"
authors = ["ScanMountGoat <>"]
description = "Xenoblade Chronicles file format library"
license = "MIT"
Expand All @@ -10,7 +10,7 @@ readme = "../README.md"
edition = "2021"

[dependencies]
xc3_write = { version = "0.13.0", path = "../xc3_write" }
xc3_write = { version = "0.14.0", path = "../xc3_write" }
image_dds = { version = "0.6.1", default-features = false, features = ["ddsfile"] }
image = { version = "0.25.2", optional = true }
binrw = "0.14.0"
Expand Down
4 changes: 2 additions & 2 deletions xc3_model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_model"
version = "0.13.0"
version = "0.14.0"
authors = ["ScanMountGoat <>"]
description = "High level library for xc3_lib"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/ScanMountGoat/xc3_lib"
edition = "2021"

[dependencies]
xc3_lib = { version = "0.13.0", path = "../xc3_lib", features = ["image"] }
xc3_lib = { version = "0.14.0", path = "../xc3_lib", features = ["image"] }
glam = { version = "0.28.0", features = ["bytemuck"] }
gltf = { version = "=1.4.1", features = ["extras", "KHR_texture_transform"], optional = true }
gltf-json = { version = "=1.4.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions xc3_shader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_shader"
version = "0.13.0"
version = "0.14.0"
edition = "2021"

[dependencies]
Expand All @@ -25,4 +25,4 @@ pretty_assertions = "1.4.0"

[features]
default = ["xc3"]
xc3 = ["dep:xc3_lib", "dep:xc3_model", "dep:pest", "dep:pest_derive"]
xc3 = ["dep:xc3_lib", "dep:xc3_model", "dep:pest", "dep:pest_derive"]
2 changes: 1 addition & 1 deletion xc3_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_test"
version = "0.13.0"
version = "0.14.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion xc3_tex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_tex"
version = "0.13.0"
version = "0.14.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion xc3_viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_viewer"
version = "0.13.0"
version = "0.14.0"
edition = "2021"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions xc3_wgpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_wgpu"
version = "0.13.0"
version = "0.14.0"
authors = ["ScanMountGoat <>"]
description = "Xenoblade Chronicles model rendering library"
license = "MIT"
Expand All @@ -10,8 +10,8 @@ edition = "2021"

[dependencies]
wgpu = "22.0.0"
xc3_model = { version = "0.13.0", path = "../xc3_model" }
xc3_lib = { version = "0.13.0", path = "../xc3_lib" }
xc3_model = { version = "0.14.0", path = "../xc3_model" }
xc3_lib = { version = "0.14.0", path = "../xc3_lib" }
bytemuck = { version = "1.13", features = [ "derive" ] }
glam = { version = "0.28.0", features = ["bytemuck"] }
encase = { version = "0.9.0", features = ["glam"] }
Expand Down
2 changes: 1 addition & 1 deletion xc3_wgpu_batch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_wgpu_batch"
version = "0.13.0"
version = "0.14.0"
edition = "2021"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions xc3_write/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_write"
version = "0.13.0"
version = "0.14.0"
authors = ["ScanMountGoat <>"]
description = "xc3_lib binary writing and layout"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/ScanMountGoat/xc3_lib"
edition = "2021"

[dependencies]
xc3_write_derive = { version = "0.13.0", path = "../xc3_write_derive" }
xc3_write_derive = { version = "0.14.0", path = "../xc3_write_derive" }

[dev-dependencies]
hexlit = "0.5.5"
Expand Down
2 changes: 1 addition & 1 deletion xc3_write_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xc3_write_derive"
version = "0.13.0"
version = "0.14.0"
authors = ["ScanMountGoat <>"]
description = "xc3_write derive macros"
license = "MIT"
Expand Down

0 comments on commit 45c5506

Please sign in to comment.