From bb1c6610016ec65a44686e4b105431dcb41bcdf4 Mon Sep 17 00:00:00 2001 From: David Snabel-Caunt Date: Mon, 20 May 2024 15:55:51 +0100 Subject: [PATCH] Expand ranges for dependency requirements (#14) --- Package.swift | 4 ++-- Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift | 2 +- UID2GMAPlugin.podspec.json | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Package.swift b/Package.swift index 07f8470..7b0232a 100644 --- a/Package.swift +++ b/Package.swift @@ -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( diff --git a/Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift b/Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift index 60c4da1..72390cf 100644 --- a/Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift +++ b/Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift @@ -42,7 +42,7 @@ extension UID2GMAMediationAdapter: GADRTBAdapter { var version = GADVersionNumber() version.majorVersion = 0 version.minorVersion = 3 - version.patchVersion = 0 + version.patchVersion = 1 return version } diff --git a/UID2GMAPlugin.podspec.json b/UID2GMAPlugin.podspec.json index 490ed7f..da97647 100644 --- a/UID2GMAPlugin.podspec.json +++ b/UID2GMAPlugin.podspec.json @@ -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": "dave.snabel-caunt@thetradedesk.com" }, "source": { "git": "https://github.com/IABTechLab/uid2-ios-plugin-google-gma.git", - "tag": "v0.3.0" + "tag": "v0.3.1" }, "platforms": { "ios": "13.0" @@ -31,7 +31,8 @@ "< 12.0" ], "UID2": [ - "~> 1.2" + ">= 0.2", + "< 2.0" ] } }