Publish 0.8.0 (#934)

This commit is contained in:
Pierre Krieger 2018-03-11 20:18:08 +01:00 committed by GitHub
parent 54e97ae07d
commit de19ef2e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,6 @@
# Unreleased (major)
# Unreleased
# Version 0.8.0 (2018-03-11)
- Changed `ShaderInterfaceMismatchError` to be more verbose.
- Allow depth/stencil images to be used with `AutoCommandBufferBuilder::copy_image_to_buffer()`

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shader-derive"
version = "0.7.3"
version = "0.8.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"
@ -15,7 +15,7 @@ proc-macro = true
[dependencies]
glsl-to-spirv = { version = "0.1.2", path = "../glsl-to-spirv" }
syn = { version = "0.11.11", features = ["aster", "visit"] }
vulkano-shaders = { version = "0.7", path = "../vulkano-shaders" }
vulkano-shaders = { version = "0.8", path = "../vulkano-shaders" }
[dev-dependencies]
vulkano = "0.7.2"
vulkano = { version = "0.8", path = "../vulkano" }

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.7.3"
version = "0.8.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Shaders "

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-win"
version = "0.7.3"
version = "0.8.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
repository = "https://github.com/vulkano-rs/vulkano"
description = "Link between vulkano and winit"
@ -8,7 +8,7 @@ license = "MIT/Apache-2.0"
categories = ["rendering::graphics-api"]
[dependencies]
vulkano = { version = "0.7.0", path = "../vulkano" }
vulkano = { version = "0.8.0", path = "../vulkano" }
winit = "0.7.0"
[target.'cfg(target_os = "macos")'.dependencies]

View File

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