Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog
=========
[1.0.1](https://github.com/hyperwallet/hyperwallet-ios-sdk/releases/tag/1.0.1)
-------------------
- Fetch Default currency on list of Transfer Method country.

[1.0.0-beta20](https://github.com/hyperwallet/hyperwallet-ios-sdk/releases/tag/1.0.0-beta20)
-------------------
- Add privacy manifest on CocoaPods Spec
Expand Down
2 changes: 1 addition & 1 deletion HyperwalletSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'HyperwalletSDK'
spec.version = '1.0.0-beta20'
spec.version = '1.0.1'
spec.summary = 'Hyperwallet Core SDK for iOS to integrate with Hyperwallet Platform'
spec.homepage = 'https://github.com/hyperwallet/hyperwallet-ios-sdk'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Use [Carthage](https://github.com/Carthage/Carthage) or [CocoaPods](https://coco
### Carthage
Specify it in your Cartfile:
```ogdl
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta20"
github "hyperwallet/hyperwallet-ios-sdk" "1.0.1"
```

### CocoaPods
Specify it in your Podfile:
```ruby
pod 'HyperwalletSDK', '~> 1.0.0-beta20'
pod 'HyperwalletSDK', '~> 1.0.1'
```

## Initialization
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>TAG_VERSION</key>
<string>1.0.0-beta20</string>
<string>1.0.1</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public struct HyperwalletCountry: Codable {
public let code: String?
/// The country name
public let name: String?
/// The 3 letter ISO 4217-1 default currency code
public let defaultCurrencyCode: String?
/// The `HyperwalletCurrency` nodes that connect to this country node
public let currencies: Connection<HyperwalletCurrency>?
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ public struct HyperwalletTransferMethodConfigurationKeysQuery: GraphQlQuery {
nodes {
code
name
currencies {
defaultCurrencyCode
currencies {
nodes {
code
name
Expand Down