mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-21 22:34:43 +00:00
Release 0.17 (#1323)
This commit is contained in:
parent
8ef0beaddf
commit
de2ef70a77
@ -1,4 +1,6 @@
|
||||
# Version 0.5.1 (TBA)
|
||||
# Unreleased
|
||||
|
||||
# Version 0.5.1 (2020-02-09)
|
||||
|
||||
- Added support for `VK_EXT_full_screen_exclusive`
|
||||
+ const `ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT`
|
||||
|
@ -1,4 +1,6 @@
|
||||
# Version 0.17.0 (TBA)
|
||||
# Unreleased
|
||||
|
||||
# Version 0.17.0 (2020-02-09)
|
||||
|
||||
- **Breaking** Swapchain::recreate_with_dimension() is now Swapchain::recreate_with_dimensions()
|
||||
- **Breaking** Sync::SharingMode::Exclusive(queue_family: u32) is now Sync::SharingMode::Exclusive.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vk-sys"
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
description = "Bindings for the Vulkan graphics API"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano-shaders"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
edition = "2018"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
@ -21,7 +21,7 @@ quote = "1.0"
|
||||
proc-macro2 = "1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
vulkano = { version = "0.16", path = "../vulkano" }
|
||||
vulkano = { version = "0.17", path = "../vulkano" }
|
||||
|
||||
[features]
|
||||
shaderc-build-from-source = ["shaderc/build-from-source"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano-win"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
edition = "2018"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
@ -13,7 +13,7 @@ categories = ["rendering::graphics-api"]
|
||||
|
||||
[dependencies]
|
||||
winit = "0.21"
|
||||
vulkano = { version = "0.16.0", path = "../vulkano" }
|
||||
vulkano = { version = "0.17.0", path = "../vulkano" }
|
||||
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
metal = "0.17.0"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
||||
repository = "https://github.com/vulkano-rs/vulkano"
|
||||
description = "Safe wrapper for the Vulkan graphics API"
|
||||
@ -18,5 +18,5 @@ fnv = "1.0"
|
||||
shared_library = "0.1"
|
||||
smallvec = "0.6"
|
||||
lazy_static = "1.4"
|
||||
vk-sys = { version = "0.5.0", path = "../vk-sys" }
|
||||
vk-sys = { version = "0.5.1", path = "../vk-sys" }
|
||||
half = "1.4"
|
||||
|
Loading…
Reference in New Issue
Block a user