File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 24
24
25
25
# Nothing to build, so download instead
26
26
if [ ! -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
29
29
archive_path=" ${my_dir} /external/objectbox-static.zip"
30
30
OBXLIB_URL_apple_static=" https://github.com/objectbox/objectbox-swift/releases/download/v${version} /ObjectBoxCore-static-${core_version} .zip"
31
31
Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ public class Store: CustomDebugStringConvertible {
93
93
obx_opt_directory ( opts, ptr)
94
94
try checkLastError ( )
95
95
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) )
98
98
let result = obx_store_open ( opts)
99
99
opts = nil // store owns it now, make sure defer doesn't free it.
100
100
try checkLastError ( )
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class StoreTests: XCTestCase {
47
47
print ( " Testing " , Store . versionFullInfo) // Actually print it so we see the used versions in the logs
48
48
// Update the expected versions every now and then...
49
49
XCTAssertGreaterThanOrEqual ( Store . version, " 1.3.1 " )
50
- XCTAssertGreaterThanOrEqual ( Store . versionLib, " 0.8.100 " )
50
+ XCTAssertGreaterThanOrEqual ( Store . versionLib, " 0.9.1 " )
51
51
XCTAssertGreaterThanOrEqual ( Store . versionCore, " 2.6.1 " )
52
52
}
53
53
Original file line number Diff line number Diff line change 1
1
{
2
2
"1.1.1" : " https://github.com/objectbox/objectbox-swift/releases/download/v1.1.1/ObjectBox-1.1.1-Carthage.framework.zip" ,
3
3
"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"
5
6
}
You can’t perform that action at this time.
0 commit comments