diff --git a/CHANGES.md b/CHANGES.md index cb7fece..957a01a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ # Changes +## 0.2.1 (2019-03-29) + +* Minor improvements. +* Updated all dependencies. + +## 0.2.0 (2019-03-25) + +* Fixed a crash when reflecting optimized SPIR-V which has no name descriptors (Walter Pearce). + ## 0.1.9 (2019-03-10) * Updated all dependencies. diff --git a/Cargo.toml b/Cargo.toml index 6e0d152..071a09b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spirv-reflect" -version = "0.1.9" +version = "0.2.1" authors = ["Graham Wihlidal "] description = "Reflection API in rust for SPIR-V shader byte code, intended for Vulkan applications." homepage = "https://github.com/gwihlidal/spirv-reflect-rs" @@ -46,10 +46,10 @@ serde_derive = "1.0.89" serde_yaml = "0.8.8" [build-dependencies] -cc = { version = "1.0.30", features = ["parallel"] } +cc = { version = "1.0.32", features = ["parallel"] } [build-dependencies.bindgen] -version = "0.48.1" +version = "0.49.0" optional = true [profile.release] diff --git a/README.md b/README.md index adb1ae2..203ca6a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -spirv-reflect = "0.1.9" +spirv-reflect = "0.2.1" ``` and add this to your crate root: @@ -73,6 +73,7 @@ at your option. - [Benjamin Saunders](https://github.com/Ralith) (Contribution) - [Nuno Subtil](https://github.com/nsubtil) (Contribution) - [Paweł Grabarz](https://github.com/Frizi) (Contribution) +- [Walter Pearce](https://github.com/jaynus) (Contribution) ## Contribution