diff --git a/stellar-ios-mac-sdk.podspec b/stellar-ios-mac-sdk.podspec index 218bc37e..91bffb0c 100644 --- a/stellar-ios-mac-sdk.podspec +++ b/stellar-ios-mac-sdk.podspec @@ -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' diff --git a/stellarsdk/stellarsdk/Info.plist b/stellarsdk/stellarsdk/Info.plist index 60165ec9..295085db 100644 --- a/stellarsdk/stellarsdk/Info.plist +++ b/stellarsdk/stellarsdk/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.3.9 + 2.4.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/stellarsdk/stellarsdkTests/account/AccountRemoteTestCase.swift b/stellarsdk/stellarsdkTests/account/AccountRemoteTestCase.swift index 84424e2e..0e803855 100644 --- a/stellarsdk/stellarsdkTests/account/AccountRemoteTestCase.swift +++ b/stellarsdk/stellarsdkTests/account/AccountRemoteTestCase.swift @@ -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) diff --git a/stellarsdk/stellarsdkTests/docs/QuickStartTest.swift b/stellarsdk/stellarsdkTests/docs/QuickStartTest.swift index 4c9409af..79c8cffd 100644 --- a/stellarsdk/stellarsdkTests/docs/QuickStartTest.swift +++ b/stellarsdk/stellarsdkTests/docs/QuickStartTest.swift @@ -152,7 +152,7 @@ class QuickStartTest: XCTestCase { } } - wait(for: [expectation], timeout: 15.0) + wait(for: [expectation], timeout: 25.0) } func testCheckPaymentsExample() {