Skip to content

Commit 533e5d5

Browse files
committed
Update dependencies & misc
Update pod spec ruby syntax Set ios9 as min deployment target Fix #18
1 parent 02dda62 commit 533e5d5

File tree

4 files changed

+45
-45
lines changed

4 files changed

+45
-45
lines changed

Examples/GAppAuth-Examples.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@
394394
GCC_WARN_UNINITIALIZED_AUTOS = YES;
395395
GCC_WARN_UNUSED_FUNCTION = YES;
396396
GCC_WARN_UNUSED_VARIABLE = YES;
397-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
397+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
398398
MACOSX_DEPLOYMENT_TARGET = 10.11;
399399
ONLY_ACTIVE_ARCH = YES;
400400
};
@@ -428,7 +428,7 @@
428428
GCC_WARN_UNINITIALIZED_AUTOS = YES;
429429
GCC_WARN_UNUSED_FUNCTION = YES;
430430
GCC_WARN_UNUSED_VARIABLE = YES;
431-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
431+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
432432
MACOSX_DEPLOYMENT_TARGET = 10.11;
433433
};
434434
name = Release;

Examples/Podfile

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ source 'https://github.com/CocoaPods/Specs.git'
22
use_frameworks!
33

44
def shared_pods
5-
pod 'GAppAuth', :path => '../'
5+
pod 'GAppAuth', path: '../'
66
end
77

8-
target "GAppAuth-iOS" do
9-
platform :ios, '8.0'
10-
shared_pods
8+
target 'GAppAuth-iOS' do
9+
platform :ios, '9.0'
10+
shared_pods
1111
end
1212

13-
target "GAppAuth-macOS" do
14-
platform :osx, '10.11'
15-
shared_pods
13+
target 'GAppAuth-macOS' do
14+
platform :osx, '10.11'
15+
shared_pods
1616
end

Examples/Podfile.lock

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
PODS:
2-
- AppAuth (1.3.0):
3-
- AppAuth/Core (= 1.3.0)
4-
- AppAuth/ExternalUserAgent (= 1.3.0)
5-
- AppAuth/Core (1.3.0)
6-
- AppAuth/ExternalUserAgent (1.3.0)
7-
- GAppAuth (1.5.0):
8-
- AppAuth (= 1.3.0)
9-
- GTMAppAuth (= 1.0.0)
10-
- GTMAppAuth (1.0.0):
11-
- AppAuth/Core (~> 1.0)
12-
- GTMSessionFetcher (~> 1.1)
13-
- GTMSessionFetcher (1.3.0):
14-
- GTMSessionFetcher/Full (= 1.3.0)
15-
- GTMSessionFetcher/Core (1.3.0)
16-
- GTMSessionFetcher/Full (1.3.0):
17-
- GTMSessionFetcher/Core (= 1.3.0)
2+
- AppAuth (1.4.0):
3+
- AppAuth/Core (= 1.4.0)
4+
- AppAuth/ExternalUserAgent (= 1.4.0)
5+
- AppAuth/Core (1.4.0)
6+
- AppAuth/ExternalUserAgent (1.4.0)
7+
- GAppAuth (1.6.0):
8+
- AppAuth (= 1.4.0)
9+
- GTMAppAuth (= 1.1.0)
10+
- GTMAppAuth (1.1.0):
11+
- AppAuth/Core (~> 1.4)
12+
- GTMSessionFetcher (~> 1.4)
13+
- GTMSessionFetcher (1.5.0):
14+
- GTMSessionFetcher/Full (= 1.5.0)
15+
- GTMSessionFetcher/Core (1.5.0)
16+
- GTMSessionFetcher/Full (1.5.0):
17+
- GTMSessionFetcher/Core (= 1.5.0)
1818

1919
DEPENDENCIES:
2020
- GAppAuth (from `../`)
@@ -30,11 +30,11 @@ EXTERNAL SOURCES:
3030
:path: "../"
3131

3232
SPEC CHECKSUMS:
33-
AppAuth: 73574f3013a1e65b9601a3ddc8b3158cce68c09d
34-
GAppAuth: 5d763c7de9c359f0863b0d9ca0c47f49f10cbbde
35-
GTMAppAuth: 4deac854479704f348309e7b66189e604cf5e01e
36-
GTMSessionFetcher: 43b8b64263023d4f32caa0b40f4c8bfa3c5f36d8
33+
AppAuth: 31bcec809a638d7bd2f86ea8a52bd45f6e81e7c7
34+
GAppAuth: 7ee04bb3673e2c20198c1f37c4c7c1303812a6d1
35+
GTMAppAuth: 197a8dabfea5d665224aa00d17f164fc2248dab9
36+
GTMSessionFetcher: b3503b20a988c4e20cc189aa798fd18220133f52
3737

38-
PODFILE CHECKSUM: 26263132f4196b5365df7b687a1cb89c960a740c
38+
PODFILE CHECKSUM: 2ee13bb2e526abff4786af96d7fa58a8540c63ea
3939

40-
COCOAPODS: 1.8.4
40+
COCOAPODS: 1.10.0

GAppAuth.podspec

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
Pod::Spec.new do |s|
2-
s.name = 'GAppAuth'
3-
s.version = '1.5.0'
4-
s.summary = 'Convenient Wrapper for AppAuth with Google Services written in Swift >= 4 (iOS).'
5-
s.homepage = 'https://github.com/elsesiy/GAppAuth'
6-
s.license = 'BSD-2-Clause'
7-
s.author = 'Jonas-Taha El Sesiy'
8-
s.social_media_url = 'http://twitter.com/elsesiy'
9-
s.platforms = { :ios => "8.0", :osx => "10.11" }
10-
s.source = { :git => 'https://github.com/elsesiy/GAppAuth.git', :tag => s.version }
2+
s.name = 'GAppAuth'
3+
s.version = '1.6.0'
4+
s.summary = 'Convenient Wrapper for AppAuth with Google Services written in Swift >= 4 (iOS).'
5+
s.homepage = 'https://github.com/elsesiy/GAppAuth'
6+
s.license = 'BSD-2-Clause'
7+
s.author = 'Jonas-Taha El Sesiy'
8+
s.social_media_url = 'https://twitter.com/elsesiy'
9+
s.platforms = { ios: '9.0', osx: '10.11' }
10+
s.source = { git: 'https://github.com/elsesiy/GAppAuth.git', tag: s.version }
1111
s.swift_version = '5.0'
1212

1313
# MacOS
1414
s.osx.deployment_target = '10.11'
15-
s.osx.source_files = 'Sources/macOS/GAppAuth.swift'
15+
s.osx.source_files = 'Sources/macOS/GAppAuth.swift'
1616

1717
# iOS
18-
s.ios.deployment_target = '8.0'
19-
s.ios.source_files = 'Sources/iOS/GAppAuth.swift'
18+
s.ios.deployment_target = '9.0'
19+
s.ios.source_files = 'Sources/iOS/GAppAuth.swift'
2020

21-
s.dependency 'GTMAppAuth', '1.0.0'
22-
s.dependency 'AppAuth', '1.3.0'
21+
s.dependency 'GTMAppAuth', '1.1.0'
22+
s.dependency 'AppAuth', '1.4.0'
2323
end

0 commit comments

Comments
 (0)