diff --git a/CHANGELOG.md b/CHANGELOG.md index 6035187c..f668cea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/vulkano-macros/Cargo.toml b/vulkano-macros/Cargo.toml index c601c3e2..ac1759c5 100644 --- a/vulkano-macros/Cargo.toml +++ b/vulkano-macros/Cargo.toml @@ -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" diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index e16a990c..3aee74ce 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-shaders" -version = "0.33.0" +version = "0.34.0" edition = "2021" authors = ["Pierre Krieger ", "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"] diff --git a/vulkano-util/Cargo.toml b/vulkano-util/Cargo.toml index 3dfb6e36..5d94ba7a 100644 --- a/vulkano-util/Cargo.toml +++ b/vulkano-util/Cargo.toml @@ -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" } diff --git a/vulkano-win/Cargo.toml b/vulkano-win/Cargo.toml index 61feeff8..05c0eb06 100644 --- a/vulkano-win/Cargo.toml +++ b/vulkano-win/Cargo.toml @@ -1,11 +1,8 @@ [package] name = "vulkano-win" -version = "0.33.0" +version = "0.34.0" edition = "2021" -authors = [ - "Pierre Krieger ", - "The vulkano contributors", -] +authors = ["Pierre Krieger ", "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] diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index 70d6fefc..1c9d72fe 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano" -version = "0.33.0" +version = "0.34.0" edition = "2021" authors = ["Pierre Krieger ", "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"