Release 0.30 (#1929)

This commit is contained in:
Austin Johnson 2022-07-20 03:50:41 -05:00 committed by GitHub
parent a387b40a0b
commit 6a8ee8d75f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 9 deletions

View File

@ -6,6 +6,9 @@
description. They will be transferred to this file right after the
Pull Request merge.
-->
# Version 0.30.0 (2022-07-20)
- **Breaking** Removed the `try_gpu_lock`, `increase_gpu_lock` and `unlock` methods from the `BufferAccess` and `ImageAccess` traits. Locking is now implemented internally in `UnsafeBuffer` and `UnsafeImage`.
- **Breaking** All `check_buffer_access` and `check_image_access` functions now take an `UnsafeBuffer`/`UnsafeImage` and a `Range<DeviceSize>`.
- **Breaking** `UnsafeCommandBufferBuilder::pipeline_barrier` now takes a `DependencyInfo`. It will use `vkCmdPipelineBarrier2` if supported.

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.29.0"
version = "0.30.0"
edition = "2021"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -20,7 +20,7 @@ proc-macro2 = "1.0"
quote = "1.0"
shaderc = "0.8"
syn = { version = "1.0", features = ["full", "extra-traits"] }
vulkano = { version = "0.29.0", path = "../vulkano" }
vulkano = { version = "0.30.0", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-util"
version = "0.29.0"
version = "0.30.0"
edition = "2021"
authors = ["The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -12,6 +12,6 @@ keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
categories = ["rendering::graphics-api"]
[dependencies]
vulkano = { version = "0.29.0", path = "../vulkano" }
vulkano-win = { version = "0.29.0", path = "../vulkano-win" }
winit = { version = "0.26" }
vulkano = { version = "0.30.0", path = "../vulkano" }
vulkano-win = { version = "0.30.0", path = "../vulkano-win" }
winit = { version = "0.26" }

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.29.0"
version = "0.30.0"
edition = "2021"
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]
raw-window-handle = { version = "0.4", optional = true }
vulkano = { version = "0.29.0", path = "../vulkano" }
vulkano = { version = "0.30.0", path = "../vulkano" }
winit = { version = "0.26", optional = true }
[target.'cfg(target_os = "macos")'.dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.29.0"
version = "0.30.0"
edition = "2021"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"