Publish 0.10.0 (#1013)

This commit is contained in:
Lucas Kent 2018-08-12 18:42:17 +10:00 committed by GitHub
parent ef8bbecc5e
commit e21bd19bad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 27 deletions

View File

@ -1,4 +1,6 @@
# Unreleased (major)
# Unreleased
# Version 0.10.0 (2018-08-10)
- Use dynamically loaded `libvulkan` like on other platforms instead of linking to MoltenVK on macOS
- Updated winit to version 0.17.

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shader-derive"
version = "0.9.0"
version = "0.10.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.6", path = "../glsl-to-spirv" }
syn = "0.14"
vulkano-shaders = { version = "0.9", path = "../vulkano-shaders" }
vulkano-shaders = { version = "0.10", path = "../vulkano-shaders" }
[dev-dependencies]
vulkano = { version = "0.9", path = "../vulkano" }
vulkano = { version = "0.10", path = "../vulkano" }

View File

@ -1,6 +1,6 @@
[package]
name = "vulkano-shaders"
version = "0.9.0"
version = "0.10.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.9.0"
version = "0.10.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.9.0", path = "../vulkano" }
vulkano = { version = "0.10.0", path = "../vulkano" }
winit = "0.17"
[target.'cfg(target_os = "macos")'.dependencies]

View File

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