From fdf4cbbdca8018724f51cd6cccc52205bd304307 Mon Sep 17 00:00:00 2001 From: Amy Beall Date: Thu, 13 Feb 2020 16:32:08 -0800 Subject: [PATCH] update version --- AffirmSDK.podspec | 2 +- CHANGELOG.md | 11 +++++++++++ UPGRADE.md | 6 +++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/AffirmSDK.podspec b/AffirmSDK.podspec index b0aa5a0..17af969 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.8' + s.version = '5.0.9' 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 32d340d..1a2c733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Affirm iOS SDK Changelog All notable changes to the SDK will be documented in this file. +## Version 5.0.9 (February 13, 2020) +- Add webhook session ID +- Update logos +- Add support for CA currency +- Change promo endpoint +- Remove promoId dependency from ala messaging call +- Add iOS Callback callback +- Update iOS SDK to accept total amount +- Bug-fixes +- VCN Support null data + ## Version 5.0.8 (November 12, 2019) - Support for Blue and Black logo in text diff --git a/UPGRADE.md b/UPGRADE.md index 067de2e..ed5eecf 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.8`, you can upgrade sdk by [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage). +The latest version is `v5.0.9`, 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.8`, 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.9`, 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.8' +pod 'AffirmSDK', '~> 5.0.9' ``` Otherwise, just use `pod update AffirmSDK` in terminal to update AffirmSDK.