Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
furby-tm committed Aug 5, 2024
1 parent 0508f6a commit 6fec1aa
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-usd"
version = "23.11.39"
version = "23.11.43"
edition = "2021"
publish = []

Expand Down
2 changes: 1 addition & 1 deletion DeclarativePixarUSD.usda
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#usda 1.0
(
doc = "SwiftUSD v23.11.39 | Declarative API"
doc = "SwiftUSD v23.11.43 | Declarative API"
)

def "DeclarativeScene"
Expand Down
2 changes: 1 addition & 1 deletion HelloPixarUSD.usda
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#usda 1.0
(
doc = "SwiftUSD v23.11.39"
doc = "SwiftUSD v23.11.43"
)

def Xform "Geometry"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<h4 align="center">
<a href="https://wabiverse.github.io/SwiftUSD/documentation/pixarusd/">
<img src="https://img.shields.io/badge/v23%2E11%2E39-DocumentationSource?style=flat-square&label=docs&labelColor=F05138&logo=swift&color=gray&logoColor=white">
<img src="https://img.shields.io/badge/v23%2E11%2E43-DocumentationSource?style=flat-square&label=docs&labelColor=F05138&logo=swift&color=gray&logoColor=white">
</a>
<a href="https://github.com/wabiverse/SwiftUSD/actions/workflows/swift-ubuntu.yml">
<img src="https://img.shields.io/github/actions/workflow/status/wabiverse/SwiftUSD/swift-ubuntu.yml?style=flat-square&label=ubuntu%20&labelColor=E95420&logoColor=FFFFFF&logo=ubuntu">
Expand Down Expand Up @@ -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.39"),
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.43"),
]
```

Expand Down Expand Up @@ -109,7 +109,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.39")
.package(url: "https://github.com/wabiverse/SwiftUSD.git", from: "23.11.43")
],
targets: [
/* 📕 For library products... */
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenUSD/Commands/UpdateCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ public enum Pxr: String, CaseIterable
source = source.replacingOccurrences(of: "<tbb/mutex.h>", with: "<mutex>")
source = source.replacingOccurrences(of: "tbb::mutex", with: "std::mutex")
// modern versions of tbb no longer contain a task_scheduler_init.
source = source.replacingOccurrences(of: "#include <OneTBB/tbb/task_scheduler_init.h>", with: "#if WITH_TBB_LEGACY\n#include <OneTBB/tbb/task_scheduler_init.h>\n#endif /* WITH_TBB_LEGACY */")
source = source.replacingOccurrences(of: "#include <tbb/task_scheduler_init.h>", with: "#if WITH_TBB_LEGACY\n#include <OneTBB/tbb/task_scheduler_init.h>\n#endif /* WITH_TBB_LEGACY */")

/* ---- materialx headers ----------- */

Expand Down
2 changes: 1 addition & 1 deletion Sources/pxr/include/pxr/pxrns.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

/* ------ swift usd. ------ */

#define SWIFTUSD_EVOLUTION 39
#define SWIFTUSD_EVOLUTION 43
#define PXR_INTERNAL_NS Pixar

/* ------------------------ */
Expand Down

0 comments on commit 6fec1aa

Please sign in to comment.