Release 0.24.0 and vk-sys 0.6.2 (#1612)

This commit is contained in:
Ilya Lakhin 2021-06-20 13:35:03 +07:00 committed by GitHub
parent 6eceb9b5b0
commit c5864e9f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,7 @@
# Unreleased
# Version 0.6.2 (2021-06-20)
- Added structs for Vulkan 1.1 and 1.2 features, with `Default` implementations.
# Version 0.6.1 (2021-04-10)

View File

@ -7,6 +7,8 @@
Pull Request merge.
-->
# Version 0.24.0 (2021-06-20)
- **Breaking** Vulkano-shaders now checks if the device supports the shader's SPIR-V version, when loading the shader.
- **Breaking** (but unlikely) Vulkano-shaders now compiles to SPIR-V 1.0 by default. If your shader needs features only available in a higher version, you can specify the target version on the `shader!` macro with the new `vulkan_version: "major.minor"` and `spirv_version: "major.minor"` arguments.
- **Breaking** Changes to how image sample counts are represented.

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.23.0"
version = "0.24.0"
edition = "2018"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -21,7 +21,7 @@ shaderc = "0.7"
syn = { version = "1.0", features = ["full", "extra-traits"] }
[dev-dependencies]
vulkano = { version = "0.23.0", path = "../vulkano" }
vulkano = { version = "0.24.0", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.23.0"
version = "0.24.0"
edition = "2018"
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.25", optional = true }
vulkano = { version = "0.23.0", path = "../vulkano" }
vulkano = { version = "0.24.0", path = "../vulkano" }
raw-window-handle = { version = "0.3.3", optional = true }
[target.'cfg(target_os = "macos")'.dependencies]

View File

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