From 1bae4ae1645de394409209acb483d74afdd2a306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?furby=E2=84=A2?= Date: Sat, 6 Apr 2024 05:58:34 -0500 Subject: [PATCH] Release v23.11.34. * With some compatibility fixes for Linux on both aarch64 & x86/64 to support both CentOS and Ubuntu, additionally linking against Python 3.10 instead of Python 3.11 for a more out-of-the box experience for most users on Linux, if a different version of Python is preferred please submit an issue. * Fix missing plugins on Linux when running the Pixar Bundler auto installer, you should no longer see any coding errors related to missing USD plugins in your application. * Addition of Gf.Matrix4d and Gf.Vector4d, as well as UsdGeom.Curves. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7465f6406..466fde140 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ For more details, please visit the web site [here](http://openusd.org). ##### To use Pixar's USD in swift, add SwiftUSD as a package dependency in your project's Package.swift file. ```swift dependencies: [ - .package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.33"), + .package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.34"), ] ``` @@ -109,7 +109,7 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.33") + .package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.34") ], targets: [ /* 📕 For library products... */