Skip to content

Commit 67d3168

Browse files
committed
bump version to 1.5.0
1 parent da8ba42 commit 67d3168

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

Example/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- RXPiOS (1.4.0)
2+
- RXPiOS (1.5.0)
33

44
DEPENDENCIES:
55
- RXPiOS (from `../`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99
:path: "../"
1010

1111
SPEC CHECKSUMS:
12-
RXPiOS: 01e473b39d1126e53e8ba22f5ad32b6927e57a03
12+
RXPiOS: 462d0d013741b1e3a537308ff21332b115fbc4af
1313

1414
PODFILE CHECKSUM: 52c366f98357bafca21816643cc3089ddafc46d1
1515

Example/Pods/Local Podspecs/RXPiOS.podspec.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/RXPiOS/RXPiOS-Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You can find more information on how to use this library and sign up for a free
1313
1. To integrate the Realex Payments iOS Library into your Xcode project using CocoaPods, specify it in your podfile:
1414

1515
```
16-
pod 'RXPiOS', '~> 1.4.0'
16+
pod 'RXPiOS', '~> 1.5.0'
1717
```
1818

1919
2. Then, run the following command:
@@ -70,7 +70,7 @@ Next you set the object which will act as the delegate for the HPPManager. The d
7070

7171
```
7272
hppManager.delegate = self
73-
```
73+
```
7474

7575
### Delegate Callbacks
7676

@@ -88,7 +88,7 @@ The HPP Manager's delegate should implement the following three functions to rec
8888
func HPPManagerCompletedWithResult(result: Dictionary <String, String>)
8989
func HPPManagerFailedWithError(error: NSError?)
9090
func HPPManagerCancelled()
91-
```
91+
```
9292

9393
### Present Payment Form
9494

@@ -120,22 +120,22 @@ hppManager.amount = "100"
120120
hppManager.currency = "EUR"
121121
```
122122

123-
These will be sent to the *Request Producer URL*, your server-side code must be setup to take in these values and pass them to the HPP server-side SDK for them to be included in the request.
123+
These will be sent to the *Request Producer URL*, your server-side code must be setup to take in these values and pass them to the HPP server-side SDK for them to be included in the request.
124124

125125
Note, in addition to the predefined properties, you can add any amount of additional arbitrary properties as follows:
126126

127127
```
128128
hppManager.supplementaryData["UNKNOWN_1"] = "Unknown value 1"
129129
hppManager.supplementaryData["UNKNOWN_2"] = "Unknown value 2"
130-
```
130+
```
131131

132-
### Testing
132+
### Testing
133133

134134
Realex Payments maintain separate endpoints for live and test transactions. You’ll need to override the HPP URL in the SDK to facilitate testing. Use the code below:
135135

136136
```
137137
hppManager.HPPURL = NSURL(string: "https://pay.sandbox.realexpayments.com/pay")
138-
```
138+
```
139139

140140
## License
141141

RXPiOS.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "RXPiOS"
11-
s.version = "1.4.0"
11+
s.version = "1.5.0"
1212
s.summary = "The official Realex Payments iOS SDK for HPP and Remote API."
1313

1414
# This description is used to generate tags and improve search results.
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
2424
s.license = 'MIT'
2525
s.author = { "Damian Sullivan" => "damian@brightstarsoftware.com", "Realex Payments" => "developers@realexpayments.com" }
26-
s.source = { :git => "https://github.com/realexpayments/rxp-ios.git", :tag => "1.4.0" }
26+
s.source = { :git => "https://github.com/realexpayments/rxp-ios.git", :tag => "1.5.0" }
2727
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
2828

2929
s.platform = :ios, '8.0'

0 commit comments

Comments
 (0)