File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2424
2525# Nothing to build, so download instead
2626if [ ! -d " ${dest_dir} " ] || [ ! -e " ${dest_dir} /libObjectBoxCore-iOS.a" ]; then
27- version=1.3.0
28- core_version=0.8.2
27+ version=1.3.1
28+ core_version=0.9.1
2929 archive_path=" ${my_dir} /external/objectbox-static.zip"
3030 OBXLIB_URL_apple_static=" https://github.com/objectbox/objectbox-swift/releases/download/v${version} /ObjectBoxCore-static-${core_version} .zip"
3131
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ public class Store: CustomDebugStringConvertible {
9393 obx_opt_directory ( opts, ptr)
9494 try checkLastError ( )
9595 obx_opt_max_db_size_in_kb ( opts, Int ( maxDbSizeInKByte) )
96- obx_opt_file_mode ( opts, Int32 ( fileMode) )
97- obx_opt_max_readers ( opts, Int32 ( maxReaders) )
96+ obx_opt_file_mode ( opts, UInt32 ( fileMode) )
97+ obx_opt_max_readers ( opts, UInt32 ( maxReaders) )
9898 let result = obx_store_open ( opts)
9999 opts = nil // store owns it now, make sure defer doesn't free it.
100100 try checkLastError ( )
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class StoreTests: XCTestCase {
4747 print ( " Testing " , Store . versionFullInfo) // Actually print it so we see the used versions in the logs
4848 // Update the expected versions every now and then...
4949 XCTAssertGreaterThanOrEqual ( Store . version, " 1.3.1 " )
50- XCTAssertGreaterThanOrEqual ( Store . versionLib, " 0.8.100 " )
50+ XCTAssertGreaterThanOrEqual ( Store . versionLib, " 0.9.1 " )
5151 XCTAssertGreaterThanOrEqual ( Store . versionCore, " 2.6.1 " )
5252 }
5353
Original file line number Diff line number Diff line change 11{
22 "1.1.1" : " https://github.com/objectbox/objectbox-swift/releases/download/v1.1.1/ObjectBox-1.1.1-Carthage.framework.zip" ,
33 "1.2.0" : " https://github.com/objectbox/objectbox-swift/releases/download/v1.2.0/ObjectBox-1.2.0-Carthage.framework.zip" ,
4- "1.3.0" : " https://github.com/objectbox/objectbox-swift/releases/download/v1.3.0/ObjectBox-1.3.0-Carthage.framework.zip"
4+ "1.3.0" : " https://github.com/objectbox/objectbox-swift/releases/download/v1.3.0/ObjectBox-1.3.0-Carthage.framework.zip" ,
5+ "1.3.1" : " https://github.com/objectbox/objectbox-swift/releases/download/v1.3.1/ObjectBox-1.3.1-Carthage.framework.zip"
56}
You can’t perform that action at this time.
0 commit comments