Skip to content

Commit

Permalink
Use AUv3Support v14.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bradhowes committed Nov 22, 2024
1 parent d314ef1 commit c44132b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions --NAME--.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1549,8 +1549,8 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/bradhowes/AUv3Support";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 14.0.0;
kind = exactVersion;
version = 14.0.1;
};
};
BD8D4E1327B589D4007011A5 /* XCRemoteSwiftPackageReference "knob" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/bradhowes/AUv3Support",
"state" : {
"revision" : "67e568ad347fc6a9bfa76b3c84bd5a7f7bea3920",
"version" : "14.0.0"
"revision" : "2790d6c7b5f183f1b0dd9abcff6ae8a247e58f63",
"version" : "14.0.1"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Packages/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ let package = Package(
.library(name: "Theme", targets: ["Theme"])
],
dependencies: [
.package(url: "https://github.com/bradhowes/AUv3Support", from: "14.0.0"),
.package(url: "https://github.com/bradhowes/AUv3Support", exact: "14.0.1"),
],
targets: [
.target(
Expand Down
13 changes: 12 additions & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,15 @@ def build(name, subtype):
print(" NAME is the name of the new AUv3 component")
print(" SUBTYPE is the unique AUv3 4-character subtype for the new component")
sys.exit(1)
build(sys.argv[1], sys.argv[2])

name = sys.argv[1]
if not name:
print("*** invalid/missing name")
sys.exit(1)

subType = sys.argv[2]
if not subType or len(subType) != 4:
print("*** invalid/missing subType -- must be exactly 4 characters")
sys.exit(1)

build(name, subType)

0 comments on commit c44132b

Please sign in to comment.