From 7c552fa16cf8843936c4a54ebd4178dc7b14dbd8 Mon Sep 17 00:00:00 2001 From: Andrew Minnich Date: Sat, 15 Jun 2024 03:35:43 -0400 Subject: [PATCH] update glam --- changelog.md | 4 ++++ crates/kira/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 5ef0eb74..138d1717 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +# v0.9.3 - June 15, 2024 + +- Update `glam` to 0.28.0 + # v0.9.2 - June 2, 2024 - Fix `StaticSoundHandle/StreamingSoundHandle::pause/resume/stop` not taking effect diff --git a/crates/kira/Cargo.toml b/crates/kira/Cargo.toml index 3eff888d..eca8aed2 100644 --- a/crates/kira/Cargo.toml +++ b/crates/kira/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kira" -version = "0.9.2" +version = "0.9.3" authors = ["Andrew Minnich "] edition = "2021" license = "MIT OR Apache-2.0" @@ -12,7 +12,7 @@ readme = "../../README.md" [dependencies] assert_no_alloc = { version = "1.1.2", optional = true } -glam = { version = "0.27.0", features = ["mint"] } +glam = { version = "0.28.0", features = ["mint"] } mint = "0.5.9" paste = "1.0.14" ringbuf = "0.3.1"