Skip to content

Commit ff322f3

Browse files
Update macOS/iOS library [4.4.1 -> 5.0.0]
Includes C API 5.0.0 and database 5.0.0-2025-09-27
1 parent 79da0e9 commit ff322f3

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

dev-doc/updating-c-library.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ from the relevant objectbox repository release tag (like `java-4.1.0`).
6060
For the Flutter plugins on iOS/macOS ([view releases](https://github.com/objectbox/objectbox-swift/releases))
6161

6262
```bash
63-
./tool/set-swift-version.sh 4.4.1
63+
./tool/set-swift-version.sh 5.0.0
6464
```
6565

6666
```text
67-
* Update ObjectBox database for Flutter iOS/macOS apps to 4.3.1.
67+
* Update ObjectBox database for Flutter iOS/macOS apps to 5.0.0.
6868
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
6969
```
7070

7171
```text
72-
Update macOS/iOS library [4.3.0 -> 4.4.1]
72+
Update macOS/iOS library [4.4.1 -> 5.0.0]
7373
74-
Includes C API 4.3.1 and database 4.3.1-2025-08-02
74+
Includes C API 5.0.0 and database 5.0.0-2025-09-27
7575
```
7676

7777
Note: the embedded C API and ObjectBox version can be looked up

flutter_libs/ios/objectbox_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.source_files = 'Classes/**/*'
1919

2020
s.dependency 'Flutter'
21-
s.dependency 'ObjectBox', '4.4.1'
21+
s.dependency 'ObjectBox', '5.0.0'
2222

2323
# Flutter.framework does not contain a i386 slice.
2424
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

flutter_libs/macos/objectbox_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.source_files = 'Classes/**/*'
1919

2020
s.dependency 'FlutterMacOS'
21-
s.dependency 'ObjectBox', '4.4.1'
21+
s.dependency 'ObjectBox', '5.0.0'
2222

2323
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2424
s.swift_version = '5.3'

objectbox/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* Update ObjectBox database for Flutter Android apps to 5.0.1.
1111
If your project is [using Admin](https://docs.objectbox.io/data-browser#admin-for-android), make
1212
sure to update to `io.objectbox:objectbox-android-objectbrowser:5.0.1` in `android/app/build.gradle`.
13+
* Update ObjectBox database for Flutter iOS/macOS apps to 5.0.0.
14+
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
1315

1416
### Sync
1517

sync_flutter_libs/ios/objectbox_sync_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
s.source_files = 'Classes/**/*'
1919

2020
s.dependency 'Flutter'
21-
s.dependency 'ObjectBox', '4.4.1-sync'
21+
s.dependency 'ObjectBox', '5.0.0-sync'
2222

2323
# Flutter.framework does not contain a i386 slice.
2424
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

sync_flutter_libs/macos/objectbox_sync_flutter_libs.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.source_files = 'Classes/**/*'
1515

1616
s.dependency 'FlutterMacOS'
17-
s.dependency 'ObjectBox', '4.4.1-sync'
17+
s.dependency 'ObjectBox', '5.0.0-sync'
1818

1919
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2020
s.swift_version = '5.3'

0 commit comments

Comments
 (0)