Skip to content

Commit

Permalink
Release 0.31 (#1990)
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinJ235 authored Sep 18, 2022
1 parent c603be0 commit 137fb9f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.30.0"
version = "0.31.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.30.0", path = "../vulkano" }
vulkano = { version = "0.31.0", path = "../vulkano" }

[features]
shaderc-build-from-source = ["shaderc/build-from-source"]
Expand Down
6 changes: 3 additions & 3 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.30.0"
version = "0.31.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.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" }
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.30.0"
version = "0.31.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.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]
Expand Down
6 changes: 3 additions & 3 deletions vulkano/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.30.0"
version = "0.31.0"
edition = "2021"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand All @@ -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"] }
Expand All @@ -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 = []

0 comments on commit 137fb9f

Please sign in to comment.