diff --git a/CHANGELOG.md b/CHANGELOG.md index 146d59a..b155444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v7.1.2 +### Bug fixes +- Fix dependency version to Reach5 + ## v7.1.1 ### New features - Fix variant communication with backend diff --git a/Package.resolved b/Package.resolved index b632e34..af28e6c 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,13 +1,13 @@ { - "originHash" : "af2c74cec1d272195075eed21fe465d71feeb7ab4f2d9fc1d472e83a68e57ba5", + "originHash" : "ddead88636d66a672a3df53a7e5da39c15963c96fb6e332f54dc5faaa8d57eff", "pins" : [ { "identity" : "alamofire", "kind" : "remoteSourceControl", "location" : "https://github.com/Alamofire/Alamofire.git", "state" : { - "revision" : "e16d3481f5ed35f0472cb93350085853d754913f", - "version" : "5.10.1" + "revision" : "513364f870f6bfc468f9d2ff0a95caccc10044c5", + "version" : "5.10.2" } }, { @@ -15,8 +15,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/openid/AppAuth-iOS.git", "state" : { - "revision" : "c89ed571ae140f8eb1142735e6e23d7bb8c34cb2", - "version" : "1.7.5" + "revision" : "2781038865a80e2c425a1da12cc1327bcd56501f", + "version" : "1.7.6" } }, { @@ -78,8 +78,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/ReachFive/reachfive-ios.git", "state" : { - "revision" : "2abb566dd5b3f89af8f26f3d8fbd889124c66131", - "version" : "7.1.4" + "revision" : "5960eb27691587d7162a0176c0b4838b7088ee81", + "version" : "7.1.5" } } ], diff --git a/Podfile b/Podfile index c828b8b..ea35c38 100644 --- a/Podfile +++ b/Podfile @@ -3,6 +3,6 @@ use_frameworks! platform :ios, '13.0' target 'Reach5Google' do - pod 'Reach5', '~> 7.1.4' + pod 'Reach5', '>= 7.1.4' pod 'Reach5Google', :path => 'Reach5Google.podspec' end diff --git a/Podfile.lock b/Podfile.lock index 7f61377..a01c410 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,10 +1,10 @@ PODS: - - Alamofire (5.10.1) - - AppAuth (1.7.5): - - AppAuth/Core (= 1.7.5) - - AppAuth/ExternalUserAgent (= 1.7.5) - - AppAuth/Core (1.7.5) - - AppAuth/ExternalUserAgent (1.7.5): + - Alamofire (5.10.2) + - AppAuth (1.7.6): + - AppAuth/Core (= 1.7.6) + - AppAuth/ExternalUserAgent (= 1.7.6) + - AppAuth/Core (1.7.6) + - AppAuth/ExternalUserAgent (1.7.6): - AppAuth/Core - BrightFutures (8.2.0) - CryptoSwift (1.8.3) @@ -17,17 +17,17 @@ PODS: - AppAuth/Core (~> 1.7) - GTMSessionFetcher/Core (< 4.0, >= 3.3) - GTMSessionFetcher/Core (3.5.0) - - Reach5 (7.1.4): + - Reach5 (7.1.5): - Alamofire (~> 5.8) - BrightFutures (~> 8.2.0) - CryptoSwift (~> 1.8) - DeviceKit (~> 5.1) - - Reach5Google (7.1.1): + - Reach5Google (7.1.2): - GoogleSignIn (~> 7) - - Reach5 (~> 7.1.4) + - Reach5 (>= 7.1.4) DEPENDENCIES: - - Reach5 (~> 7.1.4) + - Reach5 (>= 7.1.4) - Reach5Google (from `Reach5Google.podspec`) SPEC REPOS: @@ -47,17 +47,17 @@ EXTERNAL SOURCES: :path: Reach5Google.podspec SPEC CHECKSUMS: - Alamofire: 840d2a1ad82355b536ec6ba5f97e5bfa54600ca3 - AppAuth: 501c04eda8a8d11f179dbe8637b7a91bb7e5d2fa + Alamofire: 7193b3b92c74a07f85569e1a6c4f4237291e7496 + AppAuth: d4f13a8fe0baf391b2108511793e4b479691fb73 BrightFutures: 67e0e8cd974ab9f6c04650cc64153f7adf1ec489 CryptoSwift: 967f37cea5a3294d9cce358f78861652155be483 DeviceKit: d83e38ca196a4ebf0cc5f37d6f0316a24b794d5b GoogleSignIn: d4281ab6cf21542b1cfaff85c191f230b399d2db GTMAppAuth: f69bd07d68cd3b766125f7e072c45d7340dea0de GTMSessionFetcher: 5aea5ba6bd522a239e236100971f10cb71b96ab6 - Reach5: 007fa51c364e6d2cc4381192284fa9f01fa86dfe - Reach5Google: 0c0501c23c2745938d4b675b1568c16ba371b810 + Reach5: c2789236aac1fe19e98ff6bf037d6e987fc65409 + Reach5Google: 163f813835d2a52c213f09ac7fa3777281862797 -PODFILE CHECKSUM: acdd6c1d9ef0a0acd0a7f5957fb79ad9dfdbf60c +PODFILE CHECKSUM: a97b9635f15d98f3179b2fafd0ebfb60734f666e COCOAPODS: 1.16.2 diff --git a/Reach5Google.podspec b/Reach5Google.podspec index 92d87d9..0541c46 100644 --- a/Reach5Google.podspec +++ b/Reach5Google.podspec @@ -22,6 +22,6 @@ Pod::Spec.new do |spec| spec.static_framework = true - spec.dependency 'Reach5', '~> 7.1.4' + spec.dependency 'Reach5', '>= 7.1.4' spec.dependency 'GoogleSignIn', '~> 7' end diff --git a/version.rb b/version.rb index 89309fb..23a069d 100644 --- a/version.rb +++ b/version.rb @@ -1,2 +1,2 @@ -$VERSION = '7.1.1' +$VERSION = '7.1.2' $IOS_DEPLOYMENT_TARGET = '13.0'