mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 00:04:15 +00:00
Release 0.31 (#1990)
This commit is contained in:
parent
c603be06a5
commit
137fb9f24b
@ -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.
|
||||
|
@ -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"]
|
||||
|
@ -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" }
|
||||
|
@ -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]
|
||||
|
@ -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 = []
|
||||
|
Loading…
Reference in New Issue
Block a user