Vulkano version bump to 0.20.0 and vk-sys to 0.5.3

This commit is contained in:
Ilya Lakhin 2020-12-26 19:25:09 +07:00
parent 9f2257e83e
commit de01dff7c8
6 changed files with 11 additions and 8 deletions

View File

@ -1,12 +1,13 @@
# Unreleased
# Version 0.5.3 (2020-12-26)
- Added support for:
+ `PhysicalDeviceVariablePointersFeatures`
+ `PhysicalDeviceShaderAtomicInt64Features`
+ `PhysicalDevice8BitStorageFeatures`
+ `PhysicalDevice16BitStorageFeatures`
+ `PhysicalDeviceShaderFloat16Int8Features`
- Fix feature name in `PhysicalDeviceFeatures`:
+ Rename `shaderf3264` to `shaderFloat64`

View File

@ -1,5 +1,7 @@
# Unreleased
# Version 0.20.0 (2020-12-26)
- **Breaking** The `ImmutableImage::from_iter` and `ImmutableImage::from_buffer` can build Mipmaps
- **Breaking** `CpuAccessibleBuffer` now uses `RwLock` from `parking_lot`.
- **Breaking** The `Kind` and `SubpassContents` types have been moved to the root of the `command_buffer` module.

View File

@ -1,6 +1,6 @@
[package]
name = "vk-sys"
version = "0.5.2"
version = "0.5.3"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Bindings for the Vulkan graphics API"

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.19.0"
version = "0.20.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.19.0", path = "../vulkano" }
vulkano = { version = "0.20.0", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.19.0"
version = "0.20.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.24", optional = true }
vulkano = { version = "0.19.0", path = "../vulkano" }
vulkano = { version = "0.20.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.19.0"
version = "0.20.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,6 +18,6 @@ fnv = "1.0"
shared_library = "0.1"
smallvec = "1.4"
lazy_static = "1.4"
vk-sys = { version = "0.5.2", path = "../vk-sys" }
vk-sys = { version = "0.5.3", path = "../vk-sys" }
half = "1.6"
parking_lot = { version = "0.11.1", features = ["send_guard"] }