mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-25 00:04:15 +00:00
Release vulkano 0.13 (#1212)
This commit is contained in:
parent
fc6ac6fec1
commit
e93dff0bd3
@ -2,6 +2,12 @@
|
||||
|
||||
*No changes as of yet.*
|
||||
|
||||
# Version 0.13.0 (2019-07-02)
|
||||
|
||||
This is an emergency breaking breaking change. It fixes Undefined Behaviour that was preventing the compilation of Vulkano on the latest rust nightlies.
|
||||
|
||||
- Structs that have the `impl_struct` macro applied to them, now also need to `#[derive(Default)]`.
|
||||
|
||||
# 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
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano-shaders"
|
||||
version = "0.12.0"
|
||||
version = "0.13.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.12", path = "../vulkano" }
|
||||
vulkano = { version = "0.13", path = "../vulkano" }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano-win"
|
||||
version = "0.12.0"
|
||||
version = "0.13.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.12.0", path = "../vulkano" }
|
||||
vulkano = { version = "0.13.0", path = "../vulkano" }
|
||||
|
||||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
metal = "0.13"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vulkano"
|
||||
version = "0.12.0"
|
||||
version = "0.13.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"
|
||||
|
Loading…
Reference in New Issue
Block a user