Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed Jul 31, 2023
1 parent 41c7afa commit c640b7e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stellar-ios-mac-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "stellar-ios-mac-sdk"
s.version = "2.3.9"
s.version = "2.4.0"
s.summary = "Fully featured iOS and macOS SDK that provides APIs to build transactions and connect to Horizon server for the Stellar ecosystem."
s.module_name = 'stellarsdk'
s.swift_version = '5.0'
Expand Down
2 changes: 1 addition & 1 deletion stellarsdk/stellarsdk/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.3.9</string>
<string>2.4.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
12 changes: 10 additions & 2 deletions stellarsdk/stellarsdkTests/account/AccountRemoteTestCase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,16 @@ class AccountRemoteTestCase: XCTestCase {
for balance in accountDetails.balances {
print("Balance \(balance.balance)")
}
print("Seq Ledger: \(accountDetails.sequenceLedger!)")
print("Seq Time: \(accountDetails.sequenceTime!)")
if let seqLedger = accountDetails.sequenceLedger {
print("Seq Ledger: \(seqLedger)")
} else {
print("Seq Ledger: nil")
}
if let seqTime = accountDetails.sequenceLedger {
print("Seq Time: \(seqTime)")
} else {
print("Seq Time: nil")
}
XCTAssert(true)
case .failure(let error):
StellarSDKLog.printHorizonRequestErrorMessage(tag:"Get account details test", horizonRequestError: error)
Expand Down
2 changes: 1 addition & 1 deletion stellarsdk/stellarsdkTests/docs/QuickStartTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class QuickStartTest: XCTestCase {
}
}

wait(for: [expectation], timeout: 15.0)
wait(for: [expectation], timeout: 25.0)
}

func testCheckPaymentsExample() {
Expand Down

0 comments on commit c640b7e

Please sign in to comment.