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 d982ec1 commit cbf6dd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
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: ["UID2IMAPlugin"])
],
dependencies: [
.package(url: "https://github.com/IABTechLab/uid2-ios-sdk.git", from: "0.2.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-interactive-media-ads-ios.git", from: "3.18.5")
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/UID2IMAPlugin/UID2IMASecureSignalsAdapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ extension UID2IMASecureSignalsAdapter: IMASecureSignalsAdapter {
let version = IMAVersion()
version.majorVersion = 0
version.minorVersion = 3
version.patchVersion = 0
version.patchVersion = 1
return version
}

Expand Down
7 changes: 4 additions & 3 deletions UID2IMAPlugin.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 IMA 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-ima.git",
"tag": "v0.3.0"
"tag": "v0.3.1"
},
"platforms": {
"ios": "13.0"
Expand All @@ -30,7 +30,8 @@
"~> 3.18"
],
"UID2": [
"~> 1.2"
">= 0.2",
"< 2.0"
]
}
}

0 comments on commit cbf6dd4

Please sign in to comment.