From 3c860d772a311f3df0ece1d126fcc99b516861d1 Mon Sep 17 00:00:00 2001 From: VZout Date: Thu, 12 Sep 2024 18:30:30 +0200 Subject: [PATCH 1/2] Update MoltenVK to 1.2.11 --- Cargo.toml | 2 +- build/build.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c558f89..7653c79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ash-molten" description = "Statically linked MoltenVK for Vulkan on Mac using Ash" -version = "0.19.0+1.2.8" +version = "0.20.0+1.2.11" authors = [ "Embark ", "Maik Klein ", diff --git a/build/build.rs b/build/build.rs index 2701b5f..d35a143 100644 --- a/build/build.rs +++ b/build/build.rs @@ -4,7 +4,7 @@ mod mac { use std::path::{Path, PathBuf}; // MoltenVK git tagged release to use - pub static MOLTEN_VK_VERSION: &str = "1.2.8"; + pub static MOLTEN_VK_VERSION: &str = "1.2.11"; pub static MOLTEN_VK_PATCH: Option<&str> = None; // The next two are useful for different kinds of bisection to find bugs. @@ -189,7 +189,7 @@ mod mac { assert!( curl_status.success(), - "failed to download prebuilt libraries" + "failed to download prebuilt libraries from {:?}", download_url ); let unzip_status = Command::new("unzip") From d9f46cf71e181a4ebbefed24a73efe5dfd7503c3 Mon Sep 17 00:00:00 2001 From: VZout Date: Thu, 12 Sep 2024 18:41:55 +0200 Subject: [PATCH 2/2] full version --- build/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.rs b/build/build.rs index d35a143..b997947 100644 --- a/build/build.rs +++ b/build/build.rs @@ -4,7 +4,7 @@ mod mac { use std::path::{Path, PathBuf}; // MoltenVK git tagged release to use - pub static MOLTEN_VK_VERSION: &str = "1.2.11"; + pub static MOLTEN_VK_VERSION: &str = "1.2.11-b1"; pub static MOLTEN_VK_PATCH: Option<&str> = None; // The next two are useful for different kinds of bisection to find bugs.