diff --git a/CHANGELOG.md b/CHANGELOG.md index adee993408..c12f0b6d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. - **Breaking** `UnsafeCommandBufferBuilder::pipeline_barrier` now takes a `DependencyInfo`. It will use `vkCmdPipelineBarrier2` if supported. diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index eb4d347708..70d4f2dadd 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-shaders" -version = "0.29.0" +version = "0.30.0" edition = "2021" authors = ["Pierre Krieger ", "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"] diff --git a/vulkano-util/Cargo.toml b/vulkano-util/Cargo.toml index 27f654cb46..4ab33b6541 100644 --- a/vulkano-util/Cargo.toml +++ b/vulkano-util/Cargo.toml @@ -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" } \ No newline at end of file +vulkano = { version = "0.30.0", path = "../vulkano" } +vulkano-win = { version = "0.30.0", path = "../vulkano-win" } +winit = { version = "0.26" } \ No newline at end of file diff --git a/vulkano-win/Cargo.toml b/vulkano-win/Cargo.toml index 7f9e22a142..9e6d1a34a7 100644 --- a/vulkano-win/Cargo.toml +++ b/vulkano-win/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-win" -version = "0.29.0" +version = "0.30.0" edition = "2021" authors = ["Pierre Krieger ", "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] diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index aa2121c0ce..9bc6066792 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano" -version = "0.29.0" +version = "0.30.0" edition = "2021" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano"