diff --git a/Changelog.md b/Changelog.md index c9f000c..3fe7844 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,11 @@ +# 0.28.0 +* Fixed a build issue on ARM. +* *Breaking* Arrays are now passed by reference. +* Builders are now marked as `#[transparent]`. +* *Breaking* Renamed `.next(..)` to `push_next`. `push_next` is only available on structs that are passed directly. Addtionally `push_next` only accepts structs that can be inserted into the pointer chain. Read the readme for more information. +* New *experimental* extensions. Those do not follow the semver rules and can be removed at any time. +* Added `AmdGpaInterface` extension. + # 0.27.0/1 * Extensions are now namespaced. `ash::extensions::khr::Swapchain` diff --git a/ash/Cargo.toml b/ash/Cargo.toml index 6f86e2a..c886013 100644 --- a/ash/Cargo.toml +++ b/ash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ash" -version = "0.27.1" +version = "0.28.0" authors = ["maik klein "] description = "Vulkan bindings for Rust" license = "MIT"