Skip to content

Commit

Permalink
UI SDK Release changes (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
aparthibanpaypal authored Jul 6, 2021
1 parent a094f2d commit bc7ab0e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Changelog
=========
[1.0.0-beta16](https://github.com/hyperwallet/hyperwallet-ios-ui-sdk/releases/tag/1.0.0-beta16)
-------------------
- Fixed currency formatting issues
- Fixed add transfer method qraphQL calls
- Fixed memory leaks
- Fixed no fee display issue


[1.0.0-beta15](https://github.com/hyperwallet/hyperwallet-ios-ui-sdk/releases/tag/1.0.0-beta15)
-------------------
Expand Down
5 changes: 3 additions & 2 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
github "hyperwallet/hyperwallet-ios-sdk" "development"
github "hyperwallet/hyperwallet-ios-insight" "development"
github "hyperwallet/hyperwallet-ios-sdk" "1.0.0-beta14"
github "hyperwallet/hyperwallet-ios-insight" "1.0.0-beta04"

4 changes: 2 additions & 2 deletions HyperwalletUISDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'HyperwalletUISDK'
spec.version = '1.0.0-beta15'
spec.version = '1.0.0-beta16'
spec.summary = 'Hyperwallet UI SDK for iOS to integrate with Hyperwallet Platform'
spec.homepage = 'https://github.com/hyperwallet/hyperwallet-ios-ui-sdk'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
Expand All @@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
spec.source = { :git => 'https://github.com/hyperwallet/hyperwallet-ios-ui-sdk.git', :tag => "#{spec.version}"}
spec.requires_arc = true
spec.swift_version = '5.0'
spec.dependency 'HyperwalletSDK', '1.0.0-beta13'
spec.dependency 'HyperwalletSDK', '1.0.0-beta14'

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

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ Adding one or more of these frameworks allows users to explore the particular fu
### Carthage
Specify it in your Cartfile:
```ogdl
github "hyperwallet/hyperwallet-ios-ui-sdk" "1.0.0-beta15"
github "hyperwallet/hyperwallet-ios-ui-sdk" "1.0.0-beta16"
```
Add desired modules using the `Linked Frameworks and Libraries` option to make them available in the app.
Use `import <module-name>` to add the dependency within a file

### CocoaPods
- Install a specific framework (install one or more frameworks based on your requirement)
```ruby
pod "HyperwalletUISDK/TransferMethod", "1.0.0-beta15"
pod "HyperwalletUISDK/Transfer", "1.0.0-beta15"
pod "HyperwalletUISDK/Receipt", "1.0.0-beta15"
pod "HyperwalletUISDK/TransferMethod", "1.0.0-beta16"
pod "HyperwalletUISDK/Transfer", "1.0.0-beta16"
pod "HyperwalletUISDK/Receipt", "1.0.0-beta16"
```
- To install all available modules (TransferMethod, Transfer, Receipt)
```ruby
pod 'HyperwalletUISDK', '~> 1.0.0-beta15'
pod 'HyperwalletUISDK', '~> 1.0.0-beta16'
```
Use `import HyperwalletUISDK` to add the dependency within a file.

Expand Down

0 comments on commit bc7ab0e

Please sign in to comment.