Skip to content

Commit

Permalink
iOS - Bump all to 2.13.0 (aws-amplify#1452)
Browse files Browse the repository at this point in the history
* iOS - Bump all to 2.13.0

* remove 2.13.0 for AWSMobileClient for predictions.md

* remove unneeded dependencies

Co-authored-by: John Pignata <[email protected]>
  • Loading branch information
lawmicha and jpignata authored Apr 14, 2020
1 parent 64e3dc7 commit f039d50
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 25 deletions.
4 changes: 0 additions & 4 deletions ios/predictions.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,8 @@ Add the dependencies to the `Podfile`:
```ruby
target :'YOUR-APP-NAME' do
use_frameworks!
pod 'Amplify'
pod 'AmplifyPlugins'
pod 'AWSPluginsCore'
pod 'CoreMLPredictionsPlugin'
pod 'AWSPredictionsPlugin'
pod 'AWSMobileClient', '~> 2.12.0'
end
```

Expand Down
6 changes: 3 additions & 3 deletions sdk/ios/analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ platform :ios, '9.0'
target 'YourAppName' do
use_frameworks!
pod 'AWSPinpoint', '~> 2.12.0'
pod 'AWSMobileClient', '~> 2.12.0'
pod 'AWSPinpoint', '~> 2.13.0'
pod 'AWSMobileClient', '~> 2.13.0'
# other pods
Expand Down Expand Up @@ -363,7 +363,7 @@ For more information about Amazon Kinesis Firehose, see [Amazon Kinesis Firehose
Add the following to your `Podfile`:
```ruby
pod 'AWSKinesis', '~> 2.12.0'
pod 'AWSKinesis', '~> 2.13.0'
```
The instructions direct you to import the headers for the services you'll be using. For this example, you need the following import.
Expand Down
2 changes: 1 addition & 1 deletion sdk/ios/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ Add `AWSAPIGateway` to your Podfile:
use_frameworks!

# For API
pod 'AWSAPIGateway', '~> 2.12.0'
pod 'AWSAPIGateway', '~> 2.13.0'
# other pods
end
```
Expand Down
22 changes: 11 additions & 11 deletions sdk/ios/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ After initialization in your project directory with `amplify init`, edit your `P
```ruby
target 'MyApp' do ##Replace MyApp with your application name
use_frameworks!
pod 'AWSMobileClient', '~> 2.12.0' # Required dependency
pod 'AWSAuthUI', '~> 2.12.0' # Optional dependency required to use drop-in UI
pod 'AWSUserPoolsSignIn', '~> 2.12.0' # Optional dependency required to use drop-in UI
pod 'AWSMobileClient', '~> 2.13.0' # Required dependency
pod 'AWSAuthUI', '~> 2.13.0' # Optional dependency required to use drop-in UI
pod 'AWSUserPoolsSignIn', '~> 2.13.0' # Optional dependency required to use drop-in UI
end
```

Expand Down Expand Up @@ -761,12 +761,12 @@ AWSMobileClient.default().federatedSignIn(providerName: IdentityProvider.develop
target 'YOUR-APP-NAME' do
use_frameworks!

pod 'AWSFacebookSignIn', '~> 2.12.0' # Add this new dependency
pod 'AWSAuthUI', '~> 2.12.0' # Add this dependency if you have not already added
pod 'AWSFacebookSignIn', '~> 2.13.0' # Add this new dependency
pod 'AWSAuthUI', '~> 2.13.0' # Add this dependency if you have not already added
# Other Pod entries
pod 'AWSMobileClient', '~> 2.12.0'
pod 'AWSUserPoolsSignIn', '~> 2.12.0'
pod 'AWSMobileClient', '~> 2.13.0'
pod 'AWSUserPoolsSignIn', '~> 2.13.0'
end
```
Expand Down Expand Up @@ -831,13 +831,13 @@ Now, your drop-in UI will show a Facebook sign in button which the users can use
platform :ios, '9.0'
target :'YOUR-APP-NAME' do
use_frameworks!
pod 'AWSGoogleSignIn', '~> 2.12.0' # Add this new dependency
pod 'AWSGoogleSignIn', '~> 2.13.0' # Add this new dependency
pod 'GoogleSignIn', '~> 4.0' # Add this new dependency
pod 'AWSAuthUI', '~> 2.12.0' # Add this dependency if you have not already added
pod 'AWSAuthUI', '~> 2.13.0' # Add this dependency if you have not already added
# Other Pod entries
pod 'AWSMobileClient', '~> 2.12.0'
pod 'AWSUserPoolsSignIn', '~> 2.12.0'
pod 'AWSMobileClient', '~> 2.13.0'
pod 'AWSUserPoolsSignIn', '~> 2.13.0'
end
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ platform :ios, '9.0'
target :'YOUR-APP-NAME' do
use_frameworks!
pod 'AWSMobileClient', '~> 2.12.0'
pod 'AWSMobileClient', '~> 2.13.0'
# other pods . . .
Expand Down
2 changes: 1 addition & 1 deletion sdk/ios/pubsub.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The `Podfile` that you configure to install the AWS Mobile SDK must contain the
target :'YOUR-APP-NAME' do
use_frameworks!

pod 'AWSIoT', '~> 2.12.0'
pod 'AWSIoT', '~> 2.13.0'
# other pods

end
Expand Down
4 changes: 2 additions & 2 deletions sdk/ios/push-notifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ Use the following steps to connect add push notification backend services to you
target :'YOUR-APP-NAME' do
use_frameworks!
pod 'AWSPinpoint', '~> 2.12.0'
pod 'AWSPinpoint', '~> 2.13.0'
# other pods
pod 'AWSMobileClient', '~> 2.12.0'
pod 'AWSMobileClient', '~> 2.13.0'
end
```

Expand Down
4 changes: 2 additions & 2 deletions sdk/ios/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ Use the following steps to add file storage backend services to your app.
target :'YOUR-APP-NAME' do
use_frameworks!
pod 'AWSS3', '~> 2.12.0' # For file transfers
pod 'AWSS3', '~> 2.13.0' # For file transfers
# other pods . . .
pod 'AWSMobileClient', '~> 2.12.0'
pod 'AWSMobileClient', '~> 2.13.0'
end
```

Expand Down

0 comments on commit f039d50

Please sign in to comment.