Publish 0.12.0 of vulkano, vulkano-win and vulkano-shaders. (#1203)

This commit is contained in:
mitchmindtree 2019-05-25 11:29:08 +02:00 committed by Lucas Kent
parent e7a03b0e1e
commit bb6beb8995
4 changed files with 13 additions and 6 deletions

View File

@ -1,4 +1,9 @@
# Unreleased (breaking)
# Unreleased
*No changes as of yet.*
# Version 0.12.0 (2019-05-24)
- Update shaderc to 0.5. New shaderc has improved pre-built options for libshaderc that significantly reduce package build time and are appropriate for use in CI
- `QueueFamily::explicitly_supports_tranfers` only returns true if `vk::QUEUE_TRANSFER_BIT` is set instead of also always returning true. Removed `supports_transfers`.
- Update to winit 0.19
@ -7,6 +12,8 @@
- Add a `union` method for the extensions types.
- Make `BufferUsage` derive `PartialEq` and `Eq`
- Fix a compiler error in struct code generated by the `shader!` macro.
- Improve inference of image layout transitions and in turn image memory barrier
behaviour.
# Version 0.11.1 (2018-11-16)

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.11.1"
version = "0.12.0"
edition = "2018"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
@ -21,4 +21,4 @@ quote = "0.6"
proc-macro2 = "0.4"
[dev-dependencies]
vulkano = { version = "0.11", path = "../vulkano" }
vulkano = { version = "0.12", path = "../vulkano" }

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.11.1"
version = "0.12.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.19"
vulkano = { version = "0.11.0", path = "../vulkano" }
vulkano = { version = "0.12.0", path = "../vulkano" }
[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.13"

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano"
version = "0.11.1"
version = "0.12.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"