Release 0.31 (#1990)

This commit is contained in:
Austin Johnson 2022-09-18 05:46:53 -05:00 committed by GitHub
parent c603be06a5
commit 137fb9f24b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 10 deletions

View File

@ -6,9 +6,13 @@
description. They will be transferred to this file right after the
Pull Request merge.
-->
# Version 0.31.0 (2022-09-18)
- **Breaking** Public dependency updates:
- Winit 0.27
- raw-window-handle 0.5
- half 2
- **Breaking** Changes to `Instance` and Vulkan initialization:
- `FunctionPointers` is renamed to `VulkanLibrary`, and now resides in a separate `library` module. It is re-exported from the crate root.
- The `Loader` trait is now in the `library` module.

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.30.0"
version = "0.31.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.30.0", path = "../vulkano" }
vulkano = { version = "0.31.0", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-util"
version = "0.30.0"
version = "0.31.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.30.0", path = "../vulkano" }
vulkano-win = { version = "0.30.0", path = "../vulkano-win" }
vulkano = { version = "0.31.0", path = "../vulkano" }
vulkano-win = { version = "0.31.0", path = "../vulkano-win" }
winit = { version = "0.27" }

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.30.0"
version = "0.31.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.5", optional = true }
vulkano = { version = "0.30.0", path = "../vulkano" }
vulkano = { version = "0.31.0", path = "../vulkano" }
winit = { version = "0.27", optional = true }
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -19,7 +19,7 @@ build = "build.rs"
ash = "0.37"
bytemuck = { version = "1.7", features = ["derive", "extern_crate_std", "min_const_generics"] }
crossbeam-queue = "0.3"
half = "1.8"
half = "2"
libloading = "0.7"
nalgebra = { version = "0.31.0", optional = true }
parking_lot = { version = "0.12", features = ["send_guard"] }
@ -38,7 +38,7 @@ quote = "1.0"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
vk-parse = "0.7"
vk-parse = "0.8"
[features]
document_unchecked = []