Skip to content

Commit

Permalink
Upgrade MoltenVK to 1.2.8 (#82)
Browse files Browse the repository at this point in the history
* Upgrade MoltenVK to 1.2.8

* Ignore unmaintained `safemem` dependency of `plist`

* Update the changelog

* Update path to static MoltenVK.xcframework
  • Loading branch information
fornwall authored Mar 19, 2024
1 parent 56e143f commit 1079a48
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.18.0] - 2024-03-19
### Changed
- [PR#82](https://github.com/EmbarkStudios/ash-molten/pull/82) Upgrade MoltenVK to `1.2.8`

## [0.17.0] - 2024-01-24
### Changed
- [PR#81](https://github.com/EmbarkStudios/ash-molten/pull/81) Upgrade MoltenVK to `1.2.7`

## [0.16.0] - 2023-11-03
### Changed
- [PR#76](https://github.com/EmbarkStudios/ash-molten/pull/76) Upgrade MoltenVK to `1.2.6`

Expand Down Expand Up @@ -53,7 +63,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Update to MoltenVK 1.1.0

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/ash-molten/compare/0.15.0...HEAD
[Unreleased]: https://github.com/EmbarkStudios/ash-molten/compare/0.18.0...HEAD
[0.18.0]: https://github.com/EmbarkStudios/ash-molten/compare/0.17.0...0.18.0
[0.17.0]: https://github.com/EmbarkStudios/ash-molten/compare/0.16.0...0.17.0
[0.16.0]: https://github.com/EmbarkStudios/ash-molten/compare/0.15.0...0.16.0
[0.15.0]: https://github.com/EmbarkStudios/ash-molten/compare/0.14.0...0.15.0
[0.14.0]: https://github.com/EmbarkStudios/ash-molten/compare/v0.13.1+1.1.10...0.14.0
[0.13.1]: https://github.com/EmbarkStudios/ash-molten/compare/v0.13.0+1.1.10...v0.13.1+1.1.10
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ash-molten"
description = "Statically linked MoltenVK for Vulkan on Mac using Ash"
version = "0.17.0+1.2.7"
version = "0.18.0+1.2.8"
authors = [
"Embark <[email protected]>",
"Maik Klein <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.7";
pub static MOLTEN_VK_VERSION: &str = "1.2.8";
pub static MOLTEN_VK_PATCH: Option<&str> = None;

// The next two are useful for different kinds of bisection to find bugs.
Expand Down Expand Up @@ -275,7 +275,7 @@ fn main() {
} else {
pb.push(target_dir);
}
pb.push("Package/Latest/MoltenVK/MoltenVK.xcframework");
pb.push("Package/Latest/MoltenVK/static/MoltenVK.xcframework");

pb
};
Expand Down
6 changes: 6 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ multiple-versions = "deny"
deny = []
skip = []

[advisories]
ignore = [
# Unmtaintained `safemem` dependency - only used by plist to build
"RUSTSEC-2023-0081",
]

[licenses]
unlicensed = "deny"
# We want really high confidence when inferring licenses from text
Expand Down

0 comments on commit 1079a48

Please sign in to comment.