Release Vulkano 0.34.0 (#2367)

This commit is contained in:
Rua 2023-10-24 18:54:46 +02:00 committed by GitHub
parent 3ee8ba8483
commit 755dcbc6e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 21 additions and 14 deletions

View File

@ -9,6 +9,16 @@
### Public dependency updates
### Breaking changes
### Additions
### Bugs fixed
# Version 0.34.0 (2023-10-24)
### Public dependency updates
- [ash](https://crates.io/crates/ash) 0.37.3 (Vulkan 1.3.251)
- [libloading](https://crates.io/crates/libloading) 0.8

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-macros"
version = "0.33.0"
version = "0.34.0"
edition = "2021"
authors = ["The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.33.0"
version = "0.34.0"
edition = "2021"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -21,7 +21,7 @@ proc-macro2 = "1.0"
quote = "1.0"
shaderc = "0.8"
syn = { version = "2.0", features = ["full", "extra-traits"] }
vulkano = { version = "0.33.0", path = "../vulkano", default-features = false }
vulkano = { version = "0.34.0", path = "../vulkano", default-features = false }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-util"
version = "0.33.0"
version = "0.34.0"
edition = "2021"
authors = ["The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -13,6 +13,6 @@ categories = ["rendering::graphics-api"]
[dependencies]
ahash = "0.8"
vulkano = { version = "0.33.0", path = "../vulkano", default-features = false }
vulkano-win = { version = "0.33.0", path = "../vulkano-win" }
vulkano = { version = "0.34.0", path = "../vulkano", default-features = false }
vulkano-win = { version = "0.34.0", path = "../vulkano-win" }
winit = { version = "0.28" }

View File

@ -1,11 +1,8 @@
[package]
name = "vulkano-win"
version = "0.33.0"
version = "0.34.0"
edition = "2021"
authors = [
"Pierre Krieger <pierre.krieger1708@gmail.com>",
"The vulkano contributors",
]
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Link between vulkano and winit"
license = "MIT OR Apache-2.0"
@ -23,7 +20,7 @@ winit_ = ["dep:winit", "dep:objc", "dep:core-graphics-types"]
[dependencies]
raw-window-handle = { version = "0.5", optional = true }
vulkano = { version = "0.33.0", path = "../vulkano", default-features = false }
vulkano = { version = "0.34.0", path = "../vulkano", default-features = false }
winit = { version = "0.28", optional = true }
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.33.0"
version = "0.34.0"
edition = "2021"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -28,7 +28,7 @@ raw-window-handle = "0.5"
serde = { version = "1.0", optional = true }
smallvec = "1.8"
thread_local = "1.1"
vulkano-macros = { path = "../vulkano-macros", version = "0.33.0", optional = true }
vulkano-macros = { path = "../vulkano-macros", version = "0.34.0", optional = true }
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
objc = "0.2.5"