diff --git a/AffirmSDK.podspec b/AffirmSDK.podspec index 04496b4..1f80fd2 100644 --- a/AffirmSDK.podspec +++ b/AffirmSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'AffirmSDK' s.authors = "Affirm, Inc." - s.version = '5.0.12' + s.version = '5.0.13' s.summary = 'Integrate Affirm into your iOS app' s.homepage = 'https://github.com/Affirm/affirm-merchant-sdk-ios' s.license = { :type => "BSD-3-Clause", :file => "LICENSE" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a1360d5..ea3aaf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Affirm iOS SDK Changelog All notable changes to the SDK will be documented in this file. +## Version 5.0.13 (July 24, 2020) +- Added SKU based Financing Support + ## Version 5.0.12 (May 29, 2020) - Added parameters to product modal - Added an example of product modal diff --git a/UPGRADE.md b/UPGRADE.md index 4b3a2ef..8f0e8ee 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -3,11 +3,11 @@ How to upgrade? If you want to upgrade you sdk to the lastest, please check the following points: ## Version -The latest version is `v5.0.12`, you can upgrade sdk by [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage). +The latest version is `v5.0.13`, you can upgrade sdk by [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage). For example: -if you use [CocoaPods](https://cocoapods.org/), please make sure you pod repo contains `v5.0.12`, you can use `pod search AffirmSDK` to check it. Otherwise, you should update pod repo before upgrade. +if you use [CocoaPods](https://cocoapods.org/), please make sure you pod repo contains `v5.0.13`, you can use `pod search AffirmSDK` to check it. Otherwise, you should update pod repo before upgrade. ## Fetch updated library @@ -15,7 +15,7 @@ if you use [CocoaPods](https://cocoapods.org/), please make sure you pod repo co If you already use specific sdk version in Podfile, please modify the line related to affirmSDK as follows: ``` -pod 'AffirmSDK', '~> 5.0.12' +pod 'AffirmSDK', '~> 5.0.13' ``` Otherwise, just use `pod update AffirmSDK` in terminal to update AffirmSDK.