Skip to content

Commit 137fb9f

Browse files
authored
Release 0.31 (#1990)
1 parent c603be0 commit 137fb9f

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@
66
description. They will be transferred to this file right after the
77
Pull Request merge.
88
-->
9+
10+
# Version 0.31.0 (2022-09-18)
11+
912
- **Breaking** Public dependency updates:
1013
- Winit 0.27
1114
- raw-window-handle 0.5
15+
- half 2
1216
- **Breaking** Changes to `Instance` and Vulkan initialization:
1317
- `FunctionPointers` is renamed to `VulkanLibrary`, and now resides in a separate `library` module. It is re-exported from the crate root.
1418
- The `Loader` trait is now in the `library` module.

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.30.0"
3+
version = "0.31.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.30.0", path = "../vulkano" }
23+
vulkano = { version = "0.31.0", path = "../vulkano" }
2424

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

vulkano-util/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vulkano-util"
3-
version = "0.30.0"
3+
version = "0.31.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.30.0", path = "../vulkano" }
16-
vulkano-win = { version = "0.30.0", path = "../vulkano-win" }
15+
vulkano = { version = "0.31.0", path = "../vulkano" }
16+
vulkano-win = { version = "0.31.0", path = "../vulkano-win" }
1717
winit = { version = "0.27" }

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.30.0"
3+
version = "0.31.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.5", optional = true }
21-
vulkano = { version = "0.30.0", path = "../vulkano" }
21+
vulkano = { version = "0.31.0", path = "../vulkano" }
2222
winit = { version = "0.27", optional = true }
2323

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

vulkano/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vulkano"
3-
version = "0.30.0"
3+
version = "0.31.0"
44
edition = "2021"
55
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
66
repository = "https://github.com/vulkano-rs/vulkano"
@@ -19,7 +19,7 @@ build = "build.rs"
1919
ash = "0.37"
2020
bytemuck = { version = "1.7", features = ["derive", "extern_crate_std", "min_const_generics"] }
2121
crossbeam-queue = "0.3"
22-
half = "1.8"
22+
half = "2"
2323
libloading = "0.7"
2424
nalgebra = { version = "0.31.0", optional = true }
2525
parking_lot = { version = "0.12", features = ["send_guard"] }
@@ -38,7 +38,7 @@ quote = "1.0"
3838
regex = "1.5"
3939
serde = { version = "1.0", features = ["derive"] }
4040
serde_json = "1.0"
41-
vk-parse = "0.7"
41+
vk-parse = "0.8"
4242

4343
[features]
4444
document_unchecked = []

0 commit comments

Comments
 (0)