Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
- name: Run unit tests
run: xcodebuild test -scheme UID2GMAPluginTests -destination "OS=18.2,name=iPhone 16"

# Use --allow-warnings because the GMA plugin emits warnings outside of our control
- name: Lint pod spec
run: pod lib lint --verbose
run: pod lib lint --verbose --allow-warnings

vulnerability-scan:
name: Vulnerability Scan
Expand Down

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

30 changes: 24 additions & 6 deletions Package.resolved

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

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
targets: ["UID2GMAPlugin"])
],
dependencies: [
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", "1.7.0" ..< "3.0.0"),
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", "1.7.0" ..< "4.0.0"),
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", .upToNextMajor(from: "13.0.0"))
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/UID2GMAPlugin/EUIDGMAMediationAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ extension EUIDGMAMediationAdapter: RTBAdapter {
var version = VersionNumber()
version.majorVersion = 3
version.minorVersion = 0
version.patchVersion = 0
version.patchVersion = 1
return version
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extension UID2GMAMediationAdapter: RTBAdapter {
var version = VersionNumber()
version.majorVersion = 3
version.minorVersion = 0
version.patchVersion = 0
version.patchVersion = 1
return version
}

Expand Down
6 changes: 3 additions & 3 deletions UID2GMAPlugin.podspec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"summary": "A plugin for integrating UID2 and Google GMA into iOS applications.",
"homepage": "https://unifiedid.com/",
"license": "Apache License, Version 2.0",
"version": "3.0.0",
"version": "3.0.1",
"authors": {
"David Snabel-Caunt": "dave.snabel-caunt@thetradedesk.com"
},
"source": {
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-gma.git",
"tag": "v3.0.0"
"tag": "v3.0.1"
},
"platforms": {
"ios": "13.0"
Expand All @@ -31,7 +31,7 @@
],
"UID2": [
">= 1.7.0",
"< 3.0"
"< 4.0"
]
}
}
Loading