Skip to content

Commit d19c385

Browse files
authored
1 parent c8c789f commit d19c385

6 files changed

Lines changed: 13 additions & 10 deletions

File tree

AffirmSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'AffirmSDK'
33
s.authors = "Affirm, Inc."
4-
s.version = '5.0.40'
4+
s.version = '5.0.41'
55
s.summary = 'Integrate Affirm into your iOS app'
66
s.homepage = 'https://github.com/Affirm/affirm-merchant-sdk-ios'
77
s.license = { :type => "BSD-3-Clause", :file => "LICENSE" }

AffirmSDK/AffirmSDK.bundle/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<key>CFBundlePackageType</key>
1414
<string>BNDL</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>5.0.40</string>
16+
<string>5.0.41</string>
1717
<key>CFBundleVersion</key>
18-
<string>5.0.40</string>
18+
<string>5.0.41</string>
1919
</dict>
2020
</plist>

AffirmSDK/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.0.40</string>
18+
<string>5.0.41</string>
1919
<key>CFBundleVersion</key>
20-
<string>5.0.40</string>
20+
<string>5.0.41</string>
2121
</dict>
2222
</plist>

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Affirm iOS SDK Changelog
22
All notable changes to the SDK will be documented in this file.
33

4+
## Version 5.0.41 (Jul 16, 2026)
5+
- Add badge CSS to webview mode
6+
47
## Version 5.0.40 (Jan 29, 2026)
58
- Use WKWebView instead of Safari for external links
69

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ github "Affirm/affirm-merchant-sdk-ios"
2929
From Xcode 11+ :
3030

3131
1. Select File > Swift Packages > Add Package Dependency. Enter `https://github.com/Affirm/affirm-merchant-sdk-ios` in the "Choose Package Repository" dialog.
32-
2. In the next page, specify the version resolving rule as "Up to Next Major" with "5.0.40".
32+
2. In the next page, specify the version resolving rule as "Up to Next Major" with "5.0.41".
3333
3. After Xcode checked out the source and resolving the version, you can choose the "AffirmSDK" library and add it to your app target.
3434

3535
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:
3838

3939
```swift
4040
dependencies: [
41-
.package(url: "https://github.com/Affirm/affirm-merchant-sdk-ios", .upToNextMajor(from: "5.0.40"))
41+
.package(url: "https://github.com/Affirm/affirm-merchant-sdk-ios", .upToNextMajor(from: "5.0.41"))
4242
]
4343
```
4444

UPGRADE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ How to upgrade?
33
If you want to upgrade you sdk to the lastest, please check the following points:
44

55
## Version
6-
The latest version is `v5.0.40`, you can upgrade sdk by [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage).
6+
The latest version is `v5.0.41`, you can upgrade sdk by [CocoaPods](https://cocoapods.org/) and [Carthage](https://github.com/Carthage/Carthage).
77

88
For example:
99

10-
if you use [CocoaPods](https://cocoapods.org/), please make sure you pod repo contains `v5.0.40`, you can use `pod search AffirmSDK` to check it. Otherwise, you should update pod repo before upgrade.
10+
if you use [CocoaPods](https://cocoapods.org/), please make sure you pod repo contains `v5.0.41`, you can use `pod search AffirmSDK` to check it. Otherwise, you should update pod repo before upgrade.
1111

1212

1313
## Fetch updated library
1414

1515
If you already use specific sdk version in Podfile, please modify the line related to affirmSDK as follows:
1616

1717
```
18-
pod 'AffirmSDK', '~> 5.0.40'
18+
pod 'AffirmSDK', '~> 5.0.41'
1919
```
2020

2121
Otherwise, just use `pod update AffirmSDK` in terminal to update AffirmSDK.

0 commit comments

Comments
 (0)