Skip to content

Commit

Permalink
Release 0.21.0 (#1503)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliah-Lakhin authored Mar 5, 2021
1 parent e66e9a1 commit b390861
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG_VK_SYS.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG_VULKANO.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion vk-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vk-sys"
version = "0.5.3"
version = "0.6.0"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Bindings for the Vulkan graphics API"
Expand Down
4 changes: 2 additions & 2 deletions vulkano-shaders/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.20.0"
version = "0.21.0"
edition = "2018"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand All @@ -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"]
4 changes: 2 additions & 2 deletions vulkano-win/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.20.0"
version = "0.21.0"
edition = "2018"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions vulkano/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.20.0"
version = "0.21.0"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Safe wrapper for the Vulkan graphics API"
Expand All @@ -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" }

0 comments on commit b390861

Please sign in to comment.