Skip to content

Commit

Permalink
Release 0.30 (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinJ235 authored Jul 20, 2022
1 parent a387b40 commit 6a8ee8d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.29.0"
version = "0.30.0"
edition = "2021"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand All @@ -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"]
Expand Down
8 changes: 4 additions & 4 deletions vulkano-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }
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.29.0"
version = "0.30.0"
edition = "2021"
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]
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]
Expand Down
2 changes: 1 addition & 1 deletion vulkano/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.29.0"
version = "0.30.0"
edition = "2021"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand Down

0 comments on commit 6a8ee8d

Please sign in to comment.