publish 0.18.1 && vk-sys 0.5.2 (#1374)

This commit is contained in:
Austin Johnson 2020-06-01 13:52:18 -05:00 committed by GitHub
parent 1f27ab3ea9
commit eee101bc4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 8 deletions

View File

@ -1,5 +1,7 @@
# Unreleased
# Version 0.5.2 (2020-06-01)
- Added support for the physical storage buffer access.
# Version 0.5.1 (2020-02-09)

View File

@ -1,6 +1,9 @@
# Unreleased
# Version 0.19.0 (2020-06-01)
- **Breaking** AutoCommandBufferBuilder methods now take a mutable reference to `self` instead of taking ownership
- Update `smallvec` 1.2 -> 1.4
- Added additional `ImageUsage` constructor functions, `color_attachment`, `depth_stencil_attachment`, `transient_color_attachment` & `transient_depth_stencil_attachment`.
- Update dependency `half` 1.5 -> 1.6
- Update MacOS dependency `metal` 0.17 -> 0.18

View File

@ -1,6 +1,6 @@
[package]
name = "vk-sys"
version = "0.5.1"
version = "0.5.2"
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.18.0"
version = "0.19.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.18", path = "../vulkano" }
vulkano = { version = "0.19.0", path = "../vulkano" }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.18.0"
version = "0.19.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.22"
vulkano = { version = "0.18.0", path = "../vulkano" }
vulkano = { version = "0.19.0", path = "../vulkano" }
[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.18.0"

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.18.0"
version = "0.19.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"
@ -16,7 +16,7 @@ build = "build.rs"
crossbeam = "0.7"
fnv = "1.0"
shared_library = "0.1"
smallvec = "1.2"
smallvec = "1.4"
lazy_static = "1.4"
vk-sys = { version = "0.5.1", path = "../vk-sys" }
vk-sys = { version = "0.5.2", path = "../vk-sys" }
half = "1.6"