Skip to content

Commit

Permalink
Release Vulkano 0.28 (#1810)
Browse files Browse the repository at this point in the history
* Release Vulkano 0.28

* resolve unused ImageCreateFlags import on windows build

Co-authored-by: Austin Johnson <[email protected]>
  • Loading branch information
Rua and AustinJ235 authored Feb 2, 2022
1 parent 09cf7e8 commit e7acf2a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG_VULKANO.md → CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.27.1"
version = "0.28.0"
edition = "2021"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand All @@ -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"]
Expand Down
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.27.1"
version = "0.28.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]
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]
Expand Down
2 changes: 1 addition & 1 deletion vulkano/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.27.1"
version = "0.28.0"
edition = "2021"
authors = ["Pierre Krieger <[email protected]>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
Expand Down
7 changes: 7 additions & 0 deletions vulkano/src/image/attachment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e7acf2a

Please sign in to comment.