diff --git a/GoogleMobileAds-HyBid-Adapters.podspec b/GoogleMobileAds-HyBid-Adapters.podspec index 7d439e2..bc4e796 100644 --- a/GoogleMobileAds-HyBid-Adapters.podspec +++ b/GoogleMobileAds-HyBid-Adapters.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = "GoogleMobileAds-HyBid-Adapters" - spec.version = "2.9.1.0" + spec.version = "2.10.0.0" spec.summary = "HyBid iOS SDK Adapters (Header Bidding & Mediation) for Google Mobile Ads" spec.description = <<-DESC Supported ad formats: @@ -35,11 +35,11 @@ Pod::Spec.new do |spec| spec.authors = { "Can Soykarafakili" => "can.soykarafakili@pubnative.net", "Eros Garcia Ponte" => "eros.ponte@pubnative.net", "Fares Benhamouda" => "fares.benhamouda@pubnative.net", "Orkhan Alizada" => "orkhan.alizada@pubnative.net" } spec.platform = :ios, '10.0' - spec.source = { :git => "https://github.com/pubnative/googleMobileAds-hybid-adapters-ios.git", :tag => "2.9.1.0" } + spec.source = { :git => "https://github.com/pubnative/googleMobileAds-hybid-adapters-ios.git", :tag => "2.10.0.0" } spec.source_files = 'GoogleMobileAdsAdapters/**/*.{swift,h,m}' spec.static_framework = true - spec.dependency 'HyBid', '2.9.1' + spec.dependency 'HyBid', '2.10.0' spec.dependency 'Google-Mobile-Ads-SDK', '~> 8.0' end diff --git a/GoogleMobileAdsAdapters/GAD/HyBidGADRewardedCustomEvent.m b/GoogleMobileAdsAdapters/GAD/HyBidGADRewardedCustomEvent.m index ca3b3cb..dda5cab 100644 --- a/GoogleMobileAdsAdapters/GAD/HyBidGADRewardedCustomEvent.m +++ b/GoogleMobileAdsAdapters/GAD/HyBidGADRewardedCustomEvent.m @@ -107,20 +107,20 @@ - (void)rewardedDidTrackImpression { #pragma mark - GADMediationAdapter -// v: 2.9.1 +// v: 2.10.0 + (GADVersionNumber)adSDKVersion { GADVersionNumber version = {0}; version.majorVersion = 2; - version.minorVersion = 9; - version.patchVersion = 1; + version.minorVersion = 10; + version.patchVersion = 0; return version; } + (GADVersionNumber)adapterVersion { GADVersionNumber version = {0}; version.majorVersion = 2; - version.minorVersion = 9; - version.patchVersion = 1; + version.minorVersion = 10; + version.patchVersion = 0; return version; }