Skip to content

Commit

Permalink
Expand ranges for dependency requirements (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcaunt authored May 20, 2024
1 parent f5c9339 commit bb1c661
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ let package = Package(
targets: ["UID2GMAPlugin"])
],
dependencies: [
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", from: "0.2.0"),
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", from: "10.7.0")
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", "0.2.0" ..< "2.0.0"),
.package(url: "https://github.com/googleads/swift-package-manager-google-mobile-ads.git", "10.7.0" ..< "12.0.0")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ extension UID2GMAMediationAdapter: GADRTBAdapter {
var version = GADVersionNumber()
version.majorVersion = 0
version.minorVersion = 3
version.patchVersion = 0
version.patchVersion = 1
return version
}

Expand Down
7 changes: 4 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": "0.3.0",
"version": "0.3.1",
"authors": {
"David Snabel-Caunt": "[email protected]"
},
"source": {
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-gma.git",
"tag": "v0.3.0"
"tag": "v0.3.1"
},
"platforms": {
"ios": "13.0"
Expand All @@ -31,7 +31,8 @@
"< 12.0"
],
"UID2": [
"~> 1.2"
">= 0.2",
"< 2.0"
]
}
}

0 comments on commit bb1c661

Please sign in to comment.