diff --git a/CHANGES.md b/CHANGES.md index 3d8826c..c83342f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## 0.1.7 (2019-04-29) + +* Removed max ash version from dependencies. + ## 0.1.6 (2019-03-25) * Fixed AllocationCreateInfo Default implementation. diff --git a/Cargo.toml b/Cargo.toml index 096e6f0..82eb3cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vk-mem" -version = "0.1.6" +version = "0.1.7" authors = ["Graham Wihlidal "] description = "Rust ffi bindings and idiomatic wrapper for AMD Vulkan Memory Allocator (VMA)" homepage = "https://github.com/gwihlidal/vk-mem-rs" @@ -29,15 +29,15 @@ travis-ci = { repository = "gwihlidal/vk-mem-rs" } maintenance = { status = "actively-developed" } [dependencies] -ash = ">= 0.27.1, <= 0.28.0" +ash = ">= 0.27.1" bitflags = "1.0.4" failure = "0.1.5" [build-dependencies] -cc = { version = "1.0.31", features = ["parallel"] } +cc = { version = "1.0.35", 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 263cb47..e86c6cd 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ With this one function call (`vk_mem::Allocator::create_buffer`): For MoltenVK on macOS, you need to have the proper environment variables set. Something like: ```bash -export SDK_PATH=/path/to/vulkansdk-macos-1.1.101.0 +export SDK_PATH=/path/to/vulkansdk-macos-1.1.106.0 export DYLD_LIBRARY_PATH=$SDK_PATH/macOS/lib export VK_ICD_FILENAMES=$SDK_PATH/macOS/etc/vulkan/icd.d/MoltenVK_icd.json export VK_LAYER_PATH=$SDK_PATH/macOS/etc/vulkan/explicit_layer.d @@ -137,7 +137,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -vk-mem = "0.1.6" +vk-mem = "0.1.7" ``` and add this to your crate root: