From f0d0a05c0737ac8635745e34ca02e039accf0369 Mon Sep 17 00:00:00 2001 From: brendamvillareal Date: Fri, 26 Apr 2024 13:25:47 -0400 Subject: [PATCH] Version Update for release 5.0.29 --- AffirmSDK.podspec | 2 +- AffirmSDK/AffirmSDK.bundle/Info.plist | 4 ++-- AffirmSDK/Info.plist | 4 ++-- CHANGELOG.md | 3 +++ README.md | 6 +++--- UPGRADE.md | 6 +++--- 6 files changed, 14 insertions(+), 11 deletions(-) diff --git a/AffirmSDK.podspec b/AffirmSDK.podspec index f60b5fb..d80e238 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.28' + s.version = '5.0.29' 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/AffirmSDK/AffirmSDK.bundle/Info.plist b/AffirmSDK/AffirmSDK.bundle/Info.plist index 5aeb091..179731e 100644 --- a/AffirmSDK/AffirmSDK.bundle/Info.plist +++ b/AffirmSDK/AffirmSDK.bundle/Info.plist @@ -13,8 +13,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.0.28 + 5.0.29 CFBundleVersion - 5.0.28 + 5.0.29 diff --git a/AffirmSDK/Info.plist b/AffirmSDK/Info.plist index ce796b4..e182518 100644 --- a/AffirmSDK/Info.plist +++ b/AffirmSDK/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 5.0.28 + 5.0.29 CFBundleVersion - 5.0.28 + 5.0.29 diff --git a/CHANGELOG.md b/CHANGELOG.md index 77245f5..b24fcb2 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.29 (April 26, 2024) +- Bug fixes + ## Version 5.0.28 (March 26, 2024) - Bug fixes diff --git a/README.md b/README.md index 22035af..93c1043 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Affirm iOS SDK ============== -[![CocoaPods](https://img.shields.io/badge/pod-v5.0.28-blue)](https://cocoapods.org/pods/AffirmSDK) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![CocoaPods](https://img.shields.io/badge/pod-v5.0.29-blue)](https://cocoapods.org/pods/AffirmSDK) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) The Affirm iOS SDK allows you to offer Affirm in your own app. @@ -29,7 +29,7 @@ github "Affirm/affirm-merchant-sdk-ios" From Xcode 11+ : 1. Select File > Swift Packages > Add Package Dependency. Enter `https://github.com/Affirm/affirm-merchant-sdk-ios` in the "Choose Package Repository" dialog. -2. In the next page, specify the version resolving rule as "Up to Next Major" with "5.0.28". +2. In the next page, specify the version resolving rule as "Up to Next Major" with "5.0.29". 3. After Xcode checked out the source and resolving the version, you can choose the "AffirmSDK" library and add it to your app target. For more info, read [Adding Package Dependencies to Your App](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) from Apple. @@ -38,7 +38,7 @@ Alternatively, you can also add AffirmSDK to your `Package.swift` file: ```swift dependencies: [ - .package(url: "https://github.com/Affirm/affirm-merchant-sdk-ios", .upToNextMajor(from: "5.0.28")) + .package(url: "https://github.com/Affirm/affirm-merchant-sdk-ios", .upToNextMajor(from: "5.0.29")) ] ``` diff --git a/UPGRADE.md b/UPGRADE.md index 1acb1ec..3c03d47 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.28`, you can upgrade sdk by [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage). +The latest version is `v5.0.29`, 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.28`, 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.29`, 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.28' +pod 'AffirmSDK', '~> 5.0.29' ``` Otherwise, just use `pod update AffirmSDK` in terminal to update AffirmSDK.