Skip to content

Commit 4e52484

Browse files
Bump glam and hexasphere versions (#2111)
Also fixes typo "feautres" in smallvec dependency.
1 parent ce6889b commit 4e52484

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

crates/bevy_math/Cargo.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
[package]
2-
name = "bevy_math"
3-
version = "0.5.0"
4-
edition = "2018"
5-
authors = [
6-
"Bevy Contributors <bevyengine@gmail.com>",
7-
"Carter Anderson <mcanders1@gmail.com>",
8-
]
9-
description = "Provides math functionality for Bevy Engine"
10-
homepage = "https://bevyengine.org"
11-
repository = "https://github.com/bevyengine/bevy"
12-
license = "MIT"
13-
keywords = ["bevy"]
14-
15-
[dependencies]
16-
glam = { version = "0.13.0", features = ["serde"] }
17-
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }
1+
[package]
2+
name = "bevy_math"
3+
version = "0.5.0"
4+
edition = "2018"
5+
authors = [
6+
"Bevy Contributors <bevyengine@gmail.com>",
7+
"Carter Anderson <mcanders1@gmail.com>",
8+
]
9+
description = "Provides math functionality for Bevy Engine"
10+
homepage = "https://bevyengine.org"
11+
repository = "https://github.com/bevyengine/bevy"
12+
license = "MIT"
13+
keywords = ["bevy"]
14+
15+
[dependencies]
16+
glam = { version = "0.14.0", features = ["serde"] }
17+
bevy_reflect = { path = "../bevy_reflect", version = "0.5.0", features = ["bevy"] }

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ parking_lot = "0.11.0"
2828
thiserror = "1.0"
2929
serde = "1"
3030
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
31-
glam = { version = "0.13.0", features = ["serde"], optional = true }
31+
glam = { version = "0.14.0", features = ["serde"], optional = true }
3232

3333
[dev-dependencies]
3434
ron = "0.6.2"

crates/bevy_render/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ image = { version = "0.23.12", default-features = false }
3131
# misc
3232
serde = { version = "1", features = ["derive"] }
3333
bitflags = "1.2.1"
34-
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
34+
smallvec = { version = "1.6", features = ["union", "const_generics"] }
3535
once_cell = "1.4.1" # TODO: replace once_cell with std equivalent if/when this lands: https://github.com/rust-lang/rfcs/pull/2788
3636
downcast-rs = "1.2.0"
3737
thiserror = "1.0"
3838
anyhow = "1.0"
3939
hex = "0.4.2"
40-
hexasphere = "3.2"
40+
hexasphere = "3.3"
4141
parking_lot = "0.11.0"
4242

4343
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

crates/bevy_ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
3333
# other
3434
stretch = "0.3"
3535
serde = {version = "1", features = ["derive"]}
36-
smallvec = { version = "1.6", feautres = ["union", "const_generics"] }
36+
smallvec = { version = "1.6", features = ["union", "const_generics"] }

0 commit comments

Comments
 (0)