Skip to content

Commit 6a8ee8d

Browse files
authored
Release 0.30 (#1929)
1 parent a387b40 commit 6a8ee8d

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
description. They will be transferred to this file right after the
77
Pull Request merge.
88
-->
9+
10+
# Version 0.30.0 (2022-07-20)
11+
912
- **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`.
1013
- **Breaking** All `check_buffer_access` and `check_image_access` functions now take an `UnsafeBuffer`/`UnsafeImage` and a `Range<DeviceSize>`.
1114
- **Breaking** `UnsafeCommandBufferBuilder::pipeline_barrier` now takes a `DependencyInfo`. It will use `vkCmdPipelineBarrier2` if supported.

vulkano-shaders/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vulkano-shaders"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
edition = "2021"
55
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
66
repository = "https://github.com/vulkano-rs/vulkano"
@@ -20,7 +20,7 @@ proc-macro2 = "1.0"
2020
quote = "1.0"
2121
shaderc = "0.8"
2222
syn = { version = "1.0", features = ["full", "extra-traits"] }
23-
vulkano = { version = "0.29.0", path = "../vulkano" }
23+
vulkano = { version = "0.30.0", path = "../vulkano" }
2424

2525
[features]
2626
shaderc-build-from-source = ["shaderc/build-from-source"]

vulkano-util/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vulkano-util"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
edition = "2021"
55
authors = ["The vulkano contributors"]
66
repository = "https://github.com/vulkano-rs/vulkano"
@@ -12,6 +12,6 @@ keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
1212
categories = ["rendering::graphics-api"]
1313

1414
[dependencies]
15-
vulkano = { version = "0.29.0", path = "../vulkano" }
16-
vulkano-win = { version = "0.29.0", path = "../vulkano-win" }
17-
winit = { version = "0.26" }
15+
vulkano = { version = "0.30.0", path = "../vulkano" }
16+
vulkano-win = { version = "0.30.0", path = "../vulkano-win" }
17+
winit = { version = "0.26" }

vulkano-win/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vulkano-win"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
edition = "2021"
55
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
66
repository = "https://github.com/vulkano-rs/vulkano"
@@ -18,7 +18,7 @@ raw-window-handle_ = ["raw-window-handle"]
1818

1919
[dependencies]
2020
raw-window-handle = { version = "0.4", optional = true }
21-
vulkano = { version = "0.29.0", path = "../vulkano" }
21+
vulkano = { version = "0.30.0", path = "../vulkano" }
2222
winit = { version = "0.26", optional = true }
2323

2424
[target.'cfg(target_os = "macos")'.dependencies]

vulkano/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vulkano"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
edition = "2021"
55
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
66
repository = "https://github.com/vulkano-rs/vulkano"

0 commit comments

Comments
 (0)