Skip to content

Commit a6c3605

Browse files
committed
Release 1.0.0-beta07
1 parent 0442602 commit a6c3605

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
[1.0.0-beta07](https://github.com/hyperwallet/hyperwallet-ios-ui-sdk/releases/tag/1.0.0-beta07)
5+
-------------------
6+
- Fixed Cocoapod issue
7+
48
[1.0.0-beta06](https://github.com/hyperwallet/hyperwallet-ios-ui-sdk/releases/tag/1.0.0-beta06)
59
-------------------
610
- Security fixes

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta07"
1+
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta08"
22
github "hyperwallet/hyperwallet-ios-insight" "1.0.0-beta03"

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "JanGorman/Hippolyte" "0.8.0"
22
github "httpswift/swifter" "1.4.7"
33
github "hyperwallet/hyperwallet-ios-insight" "1.0.0-beta03"
4-
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta07"
4+
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta08"

HyperwalletUISDK.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'HyperwalletUISDK'
3-
spec.version = '1.0.0-beta06'
3+
spec.version = '1.0.0-beta07'
44
spec.summary = 'Hyperwallet UI SDK for iOS to integrate with Hyperwallet Platform'
55
spec.homepage = 'https://github.com/hyperwallet/hyperwallet-ios-ui-sdk'
66
spec.license = { :type => 'MIT', :file => 'LICENSE' }
@@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
1010
spec.source = { :git => 'https://github.com/hyperwallet/hyperwallet-ios-ui-sdk.git', :tag => "#{spec.version}"}
1111
spec.requires_arc = true
1212
spec.swift_version = '5.0'
13-
spec.dependency 'HyperwalletSDK', '1.0.0-beta07'
13+
spec.dependency 'HyperwalletSDK', '1.0.0-beta08'
1414

1515
spec.default_subspec = 'TransferMethod', 'Receipt', 'Transfer'
1616

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note that this SDK is geared towards those who need both backend data and UI fea
2222

2323
## Dependencies
2424

25-
- [HyperwalletSDK 1.0.0-beta07](https://github.com/hyperwallet/hyperwallet-ios-sdk)
25+
- [HyperwalletSDK 1.0.0-beta08](https://github.com/hyperwallet/hyperwallet-ios-sdk)
2626

2727
## Installation
2828
Use [Carthage](https://github.com/Carthage/Carthage) or [CocoaPods](https://cocoapods.org/) to integrate to HyperwalletSDK.
@@ -34,21 +34,21 @@ Adding one or more of these frameworks allows users to explore the particular fu
3434
### Carthage
3535
Specify it in your Cartfile:
3636
```ogdl
37-
github "hyperwallet/hyperwallet-ios-ui-sdk" "1.0.0-beta06"
37+
github "hyperwallet/hyperwallet-ios-ui-sdk" "1.0.0-beta07"
3838
```
3939
Add desired modules using the `Linked Frameworks and Libraries` option to make them available in the app.
4040
Use `import <module-name>` to add the dependency within a file
4141

4242
### CocoaPods
4343
- Install a specific framework (install one or more frameworks based on your requirement)
4444
```ruby
45-
pod "HyperwalletUISDK/TransferMethod", "1.0.0-beta06"
46-
pod "HyperwalletUISDK/Transfer", "1.0.0-beta06"
47-
pod "HyperwalletUISDK/Receipt", "1.0.0-beta06"
45+
pod "HyperwalletUISDK/TransferMethod", "1.0.0-beta07"
46+
pod "HyperwalletUISDK/Transfer", "1.0.0-beta07"
47+
pod "HyperwalletUISDK/Receipt", "1.0.0-beta07"
4848
```
4949
- To install all available modules (TransferMethod, Transfer, Receipt)
5050
```ruby
51-
pod 'HyperwalletUISDK', '~> 1.0.0-beta06'
51+
pod 'HyperwalletUISDK', '~> 1.0.0-beta07'
5252
```
5353
Use `import HyperwalletUISDK` to add the dependency within a file.
5454

0 commit comments

Comments
 (0)