Skip to content

Commit

Permalink
Add ReepayCheckoutSheet version 1.1.0 (#5)
Browse files Browse the repository at this point in the history
* Add version 1.1.0

* Update CHANGELOG.md
  • Loading branch information
johnnyrpy committed Jun 4, 2024
1 parent 53c426d commit 02eee7c
Show file tree
Hide file tree
Showing 24 changed files with 9,229 additions and 6,562 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@

- Xcode 14 is [no longer supported by Apple](https://developer.apple.com/news/upcoming-requirements/). Please upgrade to Xcode 15 or later.

## 1.1.0 2024-06-03

### CheckoutSheet

- [Added] Add Init CheckoutEvent for notifying checkout session finish loading in the sheet
- [Added] Add Error CheckoutEvent for handling checkout session error event
- [Added] Add ButtonStyle for customizing sheet dismiss button
- [Added] Add IconStyle for customizing sheet dimiss button icon
- [Added] Add TextStyle for customizing sheet dismiss button text
- [Added] Add hide header option on Checkout
- [Updated] Update Accept and Cancel URL to be optional parameters when configuring CheckoutSheet

## 1.0.0 2024-03-22

### CheckoutSheet
Expand Down
2 changes: 1 addition & 1 deletion ReepayCheckoutSheet.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|

# Do not update s.version directly.
# Update the VERSION file and run ./ci_scripts/update_version.sh
s.version = '1.0.0'
s.version = '1.1.0'

s.summary = "Reepay's prebuilt Checkout UI"
s.license = { type: 'MIT', file: 'LICENSE' }
Expand Down
10 changes: 5 additions & 5 deletions ReepayCheckoutSheet/ReepayCheckoutSheet.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@
<key>BinaryPath</key>
<string>ReepayCheckoutSheet.framework/ReepayCheckoutSheet</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>ReepayCheckoutSheet.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>ReepayCheckoutSheet.framework/ReepayCheckoutSheet</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>ReepayCheckoutSheet.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));





#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
Expand Down
Binary file not shown.
Loading

0 comments on commit 02eee7c

Please sign in to comment.