Release 0.21.0 (#1503)

This commit is contained in:
Ilya Lakhin 2021-03-05 14:19:59 +07:00 committed by GitHub
parent e66e9a1fa2
commit b39086182b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 7 deletions

View File

@ -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.

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "vk-sys"
version = "0.5.3"
version = "0.6.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Bindings for the Vulkan graphics API"

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.20.0"
version = "0.21.0"
edition = "2018"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "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"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.20.0"
version = "0.21.0"
edition = "2018"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "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]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.20.0"
version = "0.21.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "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" }