diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a4e3a3..2a1eb611 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,13 @@ ### Bugs fixed +# Version 0.34.1 (2023-10-29) + +### Bugs fixed + +- `StandardDescriptorSetAllocator` panicking due to an arithmetic overflow when arithmetic overflow checks are enabled. +- Vulkano-util still depending on the now-deprecated vulkano-win. + # Version 0.34.0 (2023-10-25) ### Public dependency updates diff --git a/vulkano-util/Cargo.toml b/vulkano-util/Cargo.toml index 58035c6c..334ffae2 100644 --- a/vulkano-util/Cargo.toml +++ b/vulkano-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-util" -version = "0.34.0" +version = "0.34.1" edition = "2021" authors = ["The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index 1c9d72fe..55213506 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano" -version = "0.34.0" +version = "0.34.1" edition = "2021" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano"