diff --git a/CHANGELOG_VK_SYS.md b/CHANGELOG_VK_SYS.md index b8bca19a..8e0870a0 100644 --- a/CHANGELOG_VK_SYS.md +++ b/CHANGELOG_VK_SYS.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.6.0 (2020-03-05) + - Added support for VK1.2 formats. - Added support for additional image aspect bits. - Updated the structure type enum to match VK1.2. diff --git a/CHANGELOG_VULKANO.md b/CHANGELOG_VULKANO.md index 7482b5d4..dc063280 100644 --- a/CHANGELOG_VULKANO.md +++ b/CHANGELOG_VULKANO.md @@ -1,5 +1,7 @@ # Unreleased +# Version 0.21.0 (2021-03-05) + - **Breaking** `Message::layer_prefix` turned to Option to prevent segfaults when Vulkan message didn't provide `pMessageIdName` value - **Breaking** On `AutoCommandBufferBuilder`, methods that bind a descriptor set now take a `dynamic_offsets` parameter - **Breaking** On `AutoCommandBufferBuilder` and `SyncCommandBufferBuilder`, the `update_buffer` method now takes `data` by reference diff --git a/vk-sys/Cargo.toml b/vk-sys/Cargo.toml index f71034b4..e0997984 100644 --- a/vk-sys/Cargo.toml +++ b/vk-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vk-sys" -version = "0.5.3" +version = "0.6.0" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" description = "Bindings for the Vulkan graphics API" diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index 573f0a69..64b7e9a7 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-shaders" -version = "0.20.0" +version = "0.21.0" edition = "2018" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" @@ -21,7 +21,7 @@ shaderc = "0.7" syn = { version = "1.0", features = ["full", "extra-traits"] } [dev-dependencies] -vulkano = { version = "0.20.0", path = "../vulkano" } +vulkano = { version = "0.21.0", path = "../vulkano" } [features] shaderc-build-from-source = ["shaderc/build-from-source"] diff --git a/vulkano-win/Cargo.toml b/vulkano-win/Cargo.toml index ab9b60fc..6779fa63 100644 --- a/vulkano-win/Cargo.toml +++ b/vulkano-win/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-win" -version = "0.20.0" +version = "0.21.0" edition = "2018" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" @@ -18,7 +18,7 @@ raw-window-handle_ = ["raw-window-handle"] [dependencies] winit = { version = "0.24", optional = true } -vulkano = { version = "0.20.0", path = "../vulkano" } +vulkano = { version = "0.21.0", path = "../vulkano" } raw-window-handle = { version = "0.3.3", optional = true } [target.'cfg(target_os = "macos")'.dependencies] diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index c2b9f8ea..f80b1b83 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano" -version = "0.20.0" +version = "0.21.0" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" description = "Safe wrapper for the Vulkan graphics API" @@ -20,4 +20,4 @@ lazy_static = "1.4" parking_lot = { version = "0.11.1", features = ["send_guard"] } shared_library = "0.1" smallvec = "1.6" -vk-sys = { version = "0.5.3", path = "../vk-sys" } +vk-sys = { version = "0.6.0", path = "../vk-sys" }