Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyloa committed Dec 1, 2023
1 parent 2cef689 commit 898b448
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DXFeedFramework/Native/ErrorHandling/ErrorCheck.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class ErrorCheck {
let exception = dxfg_get_and_clear_thread_exception_t(thread)
if let pointee = exception?.pointee {
let message = String(pointee: pointee.message, default: "Graall Exception")
let className = String(pointee: pointee.className, default: "")
let stackTrace = String(pointee: pointee.stackTrace, default: "")
let className = String(pointee: pointee.class_name, default: "")
let stackTrace = String(pointee: pointee.print_stack_trace, default: "")
let gException = GraalException.fail(message: message,
className: className,
stack: stackTrace)
Expand Down
2 changes: 1 addition & 1 deletion DXFeedFrameworkTests/IPFTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ STOCK,EREGL:TR,EREĞLİ DEMİR VE ÇELİK FABRİKALARI1 T.A.Ş.,TR,XIST,XIST,TRY
XCTAssert(newProfile == profile, "Should be equal")
expectation.fulfill()
}
wait(for: [expectation], timeout: 1.0)
wait(for: [expectation], timeout: 2.0)
} catch {
print(error)
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repositories {
}
}

def native_version = '1.1.3'
def native_version = '1.1.4'
def name = 'graal-native-sdk'
dependencies {
implementation(group: 'com.dxfeed', name: "${name}", version: "${native_version}", classifier: 'aarch64-osx', ext: 'zip')
Expand Down

0 comments on commit 898b448

Please sign in to comment.