From e21bd19bad3fa591fea32d5925e099f507905222 Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Sun, 12 Aug 2018 18:42:17 +1000 Subject: [PATCH] Publish 0.10.0 (#1013) --- CHANGELOG.md | 4 +++- vulkano-shader-derive/Cargo.toml | 6 ++--- vulkano-shaders/Cargo.toml | 2 +- vulkano-win/Cargo.toml | 4 ++-- vulkano/Cargo.toml | 40 ++++++++++++++++---------------- 5 files changed, 29 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3176a547..8533d102 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/vulkano-shader-derive/Cargo.toml b/vulkano-shader-derive/Cargo.toml index 695facef..37ac9e8b 100644 --- a/vulkano-shader-derive/Cargo.toml +++ b/vulkano-shader-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-shader-derive" -version = "0.9.0" +version = "0.10.0" authors = ["Pierre Krieger ", "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" } diff --git a/vulkano-shaders/Cargo.toml b/vulkano-shaders/Cargo.toml index 971a66ef..58f55e1c 100644 --- a/vulkano-shaders/Cargo.toml +++ b/vulkano-shaders/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-shaders" -version = "0.9.0" +version = "0.10.0" authors = ["Pierre Krieger ", "The vulkano contributors"] repository = "https://github.com/vulkano-rs/vulkano" description = "Shaders " diff --git a/vulkano-win/Cargo.toml b/vulkano-win/Cargo.toml index 892b6bac..aeccc498 100644 --- a/vulkano-win/Cargo.toml +++ b/vulkano-win/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vulkano-win" -version = "0.9.0" +version = "0.10.0" authors = ["Pierre Krieger ", "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] diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index 30d887d3..06d97dee 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -1,20 +1,20 @@ -[package] -name = "vulkano" -version = "0.9.0" -authors = ["Pierre Krieger ", "The vulkano contributors"] -repository = "https://github.com/vulkano-rs/vulkano" -description = "Safe wrapper for the Vulkan graphics API" -license = "MIT/Apache-2.0" -documentation = "https://docs.rs/vulkano" -readme = "../README.md" -categories = ["rendering::graphics-api"] -build = "build.rs" - -[dependencies] -crossbeam = "0.4" -fnv = "1.0.6" -shared_library = "0.1.7" -smallvec = "0.6.0" -lazy_static = "1" -vk-sys = { version = "0.3.3", path = "../vk-sys" } -half = "1" +[package] +name = "vulkano" +version = "0.10.0" +authors = ["Pierre Krieger ", "The vulkano contributors"] +repository = "https://github.com/vulkano-rs/vulkano" +description = "Safe wrapper for the Vulkan graphics API" +license = "MIT/Apache-2.0" +documentation = "https://docs.rs/vulkano" +readme = "../README.md" +categories = ["rendering::graphics-api"] +build = "build.rs" + +[dependencies] +crossbeam = "0.4" +fnv = "1.0.6" +shared_library = "0.1.7" +smallvec = "0.6.0" +lazy_static = "1" +vk-sys = { version = "0.3.3", path = "../vk-sys" } +half = "1"