From d54cecb09aee115361d635134471e5b7dceb72a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?furby=E2=84=A2?= Date: Wed, 10 Jan 2024 22:12:25 -0600 Subject: [PATCH] Add dependency resolutions for all os platform deps. * This should have been in the last release with the Linux fixes here: https://github.com/wabiverse/MetaverseKit/commit/63bd37f50f30040ba8144f04c2cc51a9bd0c8617 * So this will issue a new release of v1.4.2. --- Package.resolved | 27 +++++++++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/Package.resolved b/Package.resolved index c35b1220..7b07d0ef 100644 --- a/Package.resolved +++ b/Package.resolved @@ -27,6 +27,24 @@ "version" : "4.2.0" } }, + { + "identity" : "metaversepythonframework", + "kind" : "remoteSourceControl", + "location" : "https://github.com/wabiverse/MetaversePythonFramework", + "state" : { + "revision" : "7e0507f8c9bd4aa18e23b62f896b0ee766d696c1", + "version" : "3.11.4" + } + }, + { + "identity" : "metaversevulkanframework", + "kind" : "remoteSourceControl", + "location" : "https://github.com/wabiverse/MetaverseVulkanFramework", + "state" : { + "revision" : "d81c5b35576887a5e04211657cca1535b43ab0a5", + "version" : "1.26.1" + } + }, { "identity" : "pathkit", "kind" : "remoteSourceControl", @@ -36,6 +54,15 @@ "version" : "1.0.1" } }, + { + "identity" : "pythonkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pvieito/PythonKit.git", + "state" : { + "revision" : "41dd1e76bb31661f59efbc1784e8f60ccc32a9d5", + "version" : "0.4.1" + } + }, { "identity" : "rainbow", "kind" : "remoteSourceControl", diff --git a/README.md b/README.md index 77b92463..17049383 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ releases, and we will provide monolithic releases in accordance with the [**VFX ### Industry Swift Targets > [!IMPORTANT] > As of **January 10th, 2024** **Linux** is now supported, in addition to **Apple** platforms, -> you can grab the latest release [here](https://github.com/wabiverse/MetaverseKit/releases/tag/v1.3.9)! 🎉 +> you can grab the latest release [here](https://github.com/wabiverse/MetaverseKit/releases/tag/v1.4.2)! 🎉 > With **Microsoft Windows** support coming sometime in the near future. | Swift Target | Version | @@ -79,7 +79,7 @@ releases, and we will provide monolithic releases in accordance with the [**VFX ##### To use MetaverseKit with Swift, add **MetaverseKit** as a **Package** dependency in your Package.swift file, [example usage](https://github.com/wabiverse/SwiftUSD/blob/main/Package.swift#L85). ```swift dependencies: [ - .package(url: "https://github.com/wabiverse/MetaverseKit.git", from: "1.3.9"), + .package(url: "https://github.com/wabiverse/MetaverseKit.git", from: "1.4.2"), ] ```