mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-21 22:34:43 +00:00
Release Vulkano 0.34.0 (#2367)
This commit is contained in:
parent
3ee8ba8483
commit
755dcbc6e2
10
CHANGELOG.md
10
CHANGELOG.md
@ -9,6 +9,16 @@
|
|||||||
|
|
||||||
### Public dependency updates
|
### 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)
|
- [ash](https://crates.io/crates/ash) 0.37.3 (Vulkan 1.3.251)
|
||||||
- [libloading](https://crates.io/crates/libloading) 0.8
|
- [libloading](https://crates.io/crates/libloading) 0.8
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-macros"
|
name = "vulkano-macros"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["The vulkano contributors"]
|
authors = ["The vulkano contributors"]
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-shaders"
|
name = "vulkano-shaders"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
edition = "2021"
|
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"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
@ -21,7 +21,7 @@ proc-macro2 = "1.0"
|
|||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
shaderc = "0.8"
|
shaderc = "0.8"
|
||||||
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
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]
|
[features]
|
||||||
shaderc-build-from-source = ["shaderc/build-from-source"]
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-util"
|
name = "vulkano-util"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["The vulkano contributors"]
|
authors = ["The vulkano contributors"]
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
@ -13,6 +13,6 @@ categories = ["rendering::graphics-api"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ahash = "0.8"
|
ahash = "0.8"
|
||||||
vulkano = { version = "0.33.0", path = "../vulkano", default-features = false }
|
vulkano = { version = "0.34.0", path = "../vulkano", default-features = false }
|
||||||
vulkano-win = { version = "0.33.0", path = "../vulkano-win" }
|
vulkano-win = { version = "0.34.0", path = "../vulkano-win" }
|
||||||
winit = { version = "0.28" }
|
winit = { version = "0.28" }
|
||||||
|
@ -1,11 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano-win"
|
name = "vulkano-win"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||||
"Pierre Krieger <pierre.krieger1708@gmail.com>",
|
|
||||||
"The vulkano contributors",
|
|
||||||
]
|
|
||||||
repository = "https://github.com/vulkano-rs/vulkano"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
description = "Link between vulkano and winit"
|
description = "Link between vulkano and winit"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
@ -23,7 +20,7 @@ winit_ = ["dep:winit", "dep:objc", "dep:core-graphics-types"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
raw-window-handle = { version = "0.5", optional = true }
|
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 }
|
winit = { version = "0.28", optional = true }
|
||||||
|
|
||||||
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vulkano"
|
name = "vulkano"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
edition = "2021"
|
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"
|
repository = "https://github.com/vulkano-rs/vulkano"
|
||||||
@ -28,7 +28,7 @@ raw-window-handle = "0.5"
|
|||||||
serde = { version = "1.0", optional = true }
|
serde = { version = "1.0", optional = true }
|
||||||
smallvec = "1.8"
|
smallvec = "1.8"
|
||||||
thread_local = "1.1"
|
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]
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
||||||
objc = "0.2.5"
|
objc = "0.2.5"
|
||||||
|
Loading…
Reference in New Issue
Block a user