diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d5a491d8..8e4876af64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [PR#1100](https://github.com/EmbarkStudios/rust-gpu/pull/1100) updated toolchain to `nightly-2023-09-30` - [PR#1091](https://github.com/EmbarkStudios/rust-gpu/pull/1091) updated toolchain to `nightly-2023-08-29` - [PR#1085](https://github.com/EmbarkStudios/rust-gpu/pull/1085) updated toolchain to `nightly-2023-07-08` +- [PR#TODO](https://github.com/EmbarkStudios/rust-gpu/pull/TODO) relaxed `glam` version requirements (from `>=0.22, <=0.24` to `>=0.22, <=0.25`) ## [0.9.0] diff --git a/crates/spirv-std/Cargo.toml b/crates/spirv-std/Cargo.toml index 2efdff6223..1afa438413 100644 --- a/crates/spirv-std/Cargo.toml +++ b/crates/spirv-std/Cargo.toml @@ -12,7 +12,7 @@ spirv-std-types.workspace = true spirv-std-macros.workspace = true bitflags = "1.2.1" num-traits = { version = "0.2.15", default-features = false, features = ["libm"] } -glam = { version = ">=0.22, <=0.24", default-features = false, features = ["libm"] } +glam = { version = ">=0.22, <=0.25", default-features = false, features = ["libm"] } [features] default = []