From cc441aa005c943fd62dd3544f5cd4b269a84d8c5 Mon Sep 17 00:00:00 2001 From: Eros Garcia Ponte Date: Mon, 7 Oct 2024 21:02:01 +0200 Subject: [PATCH] Release 3.1.1.0 --- GoogleMobileAds-HyBid-Adapters.podspec | 6 +++--- GoogleMobileAdsAdapters/GAD/HyBidGADUtils.m | 6 +++--- GoogleMobileAdsAdapters/GAM/HyBidGAMUtils.m | 6 +++--- README.md | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/GoogleMobileAds-HyBid-Adapters.podspec b/GoogleMobileAds-HyBid-Adapters.podspec index 3d6630f..2cea5be 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 = "3.1.0.0" + spec.version = "3.1.1.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", "Jose Contreras" => "jose.contreras@verve.com", "Aysel Abdullayeva" => "aysel.abdullayeva@verve.com" } spec.platform = :ios, '12.0' - spec.source = { :git => "https://github.com/pubnative/googleMobileAds-hybid-adapters-ios.git", :tag => "3.1.0.0" } + spec.source = { :git => "https://github.com/pubnative/googleMobileAds-hybid-adapters-ios.git", :tag => "3.1.1.0" } spec.source_files = 'GoogleMobileAdsAdapters/**/*.{swift,h,m}' spec.static_framework = true - spec.dependency 'HyBid', '3.1.0' + spec.dependency 'HyBid', '3.1.1' spec.dependency 'Google-Mobile-Ads-SDK', '~> 11.0' end diff --git a/GoogleMobileAdsAdapters/GAD/HyBidGADUtils.m b/GoogleMobileAdsAdapters/GAD/HyBidGADUtils.m index a8d46cf..87dbe3a 100644 --- a/GoogleMobileAdsAdapters/GAD/HyBidGADUtils.m +++ b/GoogleMobileAdsAdapters/GAD/HyBidGADUtils.m @@ -66,12 +66,12 @@ + (NSString *)valueWithKey:(NSString *)key return result; } -// v: 3.0.4 +// v: 3.1.1 + (GADVersionNumber)adSDKVersion { GADVersionNumber version = {0}; version.majorVersion = 3; version.minorVersion = 1; - version.patchVersion = 0; + version.patchVersion = 1; return version; } @@ -79,7 +79,7 @@ + (GADVersionNumber)adapterVersion { GADVersionNumber version = {0}; version.majorVersion = 3; version.minorVersion = 1; - version.patchVersion = 0; + version.patchVersion = 1; return version; } diff --git a/GoogleMobileAdsAdapters/GAM/HyBidGAMUtils.m b/GoogleMobileAdsAdapters/GAM/HyBidGAMUtils.m index 3596534..c34be8f 100644 --- a/GoogleMobileAdsAdapters/GAM/HyBidGAMUtils.m +++ b/GoogleMobileAdsAdapters/GAM/HyBidGAMUtils.m @@ -62,12 +62,12 @@ + (NSString *)valueWithKey:(NSString *)key } -// v: 3.0.4 +// v: 3.1.1 + (GADVersionNumber)adSDKVersion { GADVersionNumber version = {0}; version.majorVersion = 3; version.minorVersion = 1; - version.patchVersion = 0; + version.patchVersion = 1; return version; } @@ -75,7 +75,7 @@ + (GADVersionNumber)adapterVersion { GADVersionNumber version = {0}; version.majorVersion = 3; version.minorVersion = 1; - version.patchVersion = 0; + version.patchVersion = 1; return version; } diff --git a/README.md b/README.md index 6d6b3f4..c0a4124 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ It will install HyBid Adapters, as well as HyBid iOS SDK and Google Mobile Ads i ```ruby platform :ios, '12.0' -pod 'GoogleMobileAds-HyBid-Adapters', '3.1.0.0' +pod 'GoogleMobileAds-HyBid-Adapters', '3.1.1.0' ``` 2. Run `pod install --repo-update` to install the pod in your project.