Skip to content

Commit cbf6dd4

Browse files
authored
Expand ranges for dependency requirements (#14)
1 parent d982ec1 commit cbf6dd4

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
targets: ["UID2IMAPlugin"])
1616
],
1717
dependencies: [
18-
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", from: "0.2.0"),
18+
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", "0.2.0" ..< "2.0.0"),
1919
.package(url: "https://github.com/googleads/swift-package-manager-google-interactive-media-ads-ios.git", from: "3.18.5")
2020
],
2121
targets: [

Sources/UID2IMAPlugin/UID2IMASecureSignalsAdapter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension UID2IMASecureSignalsAdapter: IMASecureSignalsAdapter {
2626
let version = IMAVersion()
2727
version.majorVersion = 0
2828
version.minorVersion = 3
29-
version.patchVersion = 0
29+
version.patchVersion = 1
3030
return version
3131
}
3232

UID2IMAPlugin.podspec.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"summary": "A plugin for integrating UID2 and Google IMA into iOS applications.",
44
"homepage": "https://unifiedid.com/",
55
"license": "Apache License, Version 2.0",
6-
"version": "0.3.0",
6+
"version": "0.3.1",
77
"authors": {
88
"David Snabel-Caunt": "[email protected]"
99
},
1010
"source": {
1111
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-ima.git",
12-
"tag": "v0.3.0"
12+
"tag": "v0.3.1"
1313
},
1414
"platforms": {
1515
"ios": "13.0"
@@ -30,7 +30,8 @@
3030
"~> 3.18"
3131
],
3232
"UID2": [
33-
"~> 1.2"
33+
">= 0.2",
34+
"< 2.0"
3435
]
3536
}
3637
}

0 commit comments

Comments
 (0)