Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: IABTechLab/uid2-ios-plugin-google-gma
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0cf81b9b06c753cc1a7db5668b22fc60518dbbce
Choose a base ref
..
head repository: IABTechLab/uid2-ios-plugin-google-gma
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 42b9673482ab0b7e2fea3f23b5109bf5f5fa4f6d
Choose a head ref
Showing with 10 additions and 9 deletions.
  1. +2 −2 Sources/UID2GMAPlugin/EUIDGMAMediationAdapter.swift
  2. +6 −5 Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift
  3. +2 −2 UID2GMAPlugin.podspec.json
4 changes: 2 additions & 2 deletions Sources/UID2GMAPlugin/EUIDGMAMediationAdapter.swift
Original file line number Diff line number Diff line change
@@ -39,8 +39,8 @@ extension EUIDGMAMediationAdapter: GADRTBAdapter {

static func adapterVersion() -> GADVersionNumber {
var version = GADVersionNumber()
version.majorVersion = 0
version.minorVersion = 5
version.majorVersion = 1
version.minorVersion = 0
version.patchVersion = 0
return version
}
11 changes: 6 additions & 5 deletions Sources/UID2GMAPlugin/UID2GMAMediationAdapter.swift
Original file line number Diff line number Diff line change
@@ -42,17 +42,18 @@ extension UID2GMAMediationAdapter: GADRTBAdapter {

static func adapterVersion() -> GADVersionNumber {
var version = GADVersionNumber()
version.majorVersion = 0
version.minorVersion = 5
version.majorVersion = 1
version.minorVersion = 0
version.patchVersion = 0
return version
}

static func adSDKVersion() -> GADVersionNumber {
let uid2Version = UID2SDKProperties.getUID2SDKVersion()
var version = GADVersionNumber()
version.majorVersion = UID2SDKProperties.getUID2SDKVersion().major
version.minorVersion = UID2SDKProperties.getUID2SDKVersion().minor
version.patchVersion = UID2SDKProperties.getUID2SDKVersion().patch
version.majorVersion = uid2Version.major
version.minorVersion = uid2Version.minor
version.patchVersion = uid2Version.patch
return version
}

4 changes: 2 additions & 2 deletions UID2GMAPlugin.podspec.json
Original file line number Diff line number Diff line change
@@ -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.5.0",
"version": "1.0.0",
"authors": {
"David Snabel-Caunt": "dave.snabel-caunt@thetradedesk.com"
},
"source": {
"git": "https://github.com/IABTechLab/uid2-ios-plugin-google-gma.git",
"tag": "v0.5.0"
"tag": "v1.0.0"
},
"platforms": {
"ios": "12.0"