From e383db44bb5ceb1dbe644abb4cd6fd1141fa0eaf Mon Sep 17 00:00:00 2001 From: Graham Wihlidal Date: Sun, 10 Mar 2019 01:58:33 -0700 Subject: [PATCH] Publish v0.1.9 --- CHANGES.md | 15 +++++++++++---- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 9259bb0..cb7fece 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,14 +1,21 @@ # Changes +## 0.1.9 (2019-03-10) + +* Updated all dependencies. +* Added support for NV_ray_tracing (Jasper Bekkers and Nuno Subtil). +* Support glsl uniform sampler2D type (Paweł Grabarz). +* Removed unused dependency, and load_u32_data fix (Benjamin Saunders). + ## 0.1.8 (2018-12-09) -* Removed get_code_size/get_code_slice in favour of get_code (lifetime safety) -* Numerous optimizations (excessive copies) -* Fixed some FFI memory crashes +* Removed get_code_size/get_code_slice in favour of get_code (lifetime safety). +* Numerous optimizations (excessive copies). +* Fixed some FFI memory crashes. ## 0.1.7 (2018-12-08) -* Rust 2018 Edition +* Rust 2018 Edition. ## 0.1.6 (2018-11-21) diff --git a/Cargo.toml b/Cargo.toml index af0c6db..6e0d152 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spirv-reflect" -version = "0.1.8" +version = "0.1.9" 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" diff --git a/README.md b/README.md index 7586dd6..adb1ae2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -spirv-reflect = "0.1.8" +spirv-reflect = "0.1.9" ``` and add this to your crate root: