Release Vulkano 0.28 (#1810)

* Release Vulkano 0.28

* resolve unused ImageCreateFlags import on windows build

Co-authored-by: Austin Johnson <me@austinj.work>
This commit is contained in:
Rua 2022-02-02 12:43:34 +01:00 committed by GitHub
parent 09cf7e885c
commit e7acf2aa9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 14 additions and 5 deletions

View File

@ -7,6 +7,8 @@
Pull Request merge.
-->
# Version 0.28.0 (2022-01-30)
- **Breaking** Updated to ash 0.35, half 1.8, smallvec 1.7, winit 0.26, raw-window-handle 0.4.
- **Breaking** `ColorSpace::DciP3Linear` is renamed to `DisplayP3Linear` to match an equivalent change in the Vulkan naming.
- Updated vk.xml to 1.2.203.

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.27.1"
version = "0.28.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.7"
syn = { version = "1.0", features = ["full", "extra-traits"] }
vulkano = { version = "0.27.1", path = "../vulkano" }
vulkano = { version = "0.28.0", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.27.1"
version = "0.28.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]
winit = { version = "0.26", optional = true }
vulkano = { version = "0.27.1", path = "../vulkano" }
vulkano = { version = "0.28.0", path = "../vulkano" }
raw-window-handle = { version = "0.4", optional = true }
[target.'cfg(target_os = "macos")'.dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.27.1"
version = "0.28.0"
edition = "2021"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"

View File

@ -15,6 +15,13 @@ use crate::image::sys::UnsafeImage;
use crate::image::traits::ImageAccess;
use crate::image::traits::ImageClearValue;
use crate::image::traits::ImageContent;
#[cfg(any(
target_os = "linux",
target_os = "dragonflybsd",
target_os = "freebsd",
target_os = "netbsd",
target_os = "openbsd"
))]
use crate::image::ImageCreateFlags;
use crate::image::ImageDescriptorLayouts;
use crate::image::ImageDimensions;