Skip to content

Commit 67c01e5

Browse files
Update macOS/iOS library [4.2.0 -> 4.3.0]
Includes C API 4.3.0 and database 4.3.0-2025-05-12
1 parent 261ca61 commit 67c01e5

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

dev-doc/updating-c-library.md

Lines changed: 5 additions & 5 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.2.0
63+
./tool/set-swift-version.sh 4.3.0
6464
```
6565

6666
```text
67-
* Update ObjectBox database for Flutter iOS/macOS apps to 4.2.0.
67+
* Update ObjectBox database for Flutter iOS/macOS apps to 4.3.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 ObjectBox Swift [4.1.0 -> 4.2.0]
72+
Update macOS/iOS library [4.2.0 -> 4.3.0]
7373
74-
Includes C API 4.2.0 and database 4.2.0-2025-03-27
74+
Includes C API 4.3.0 and database 4.3.0-2025-05-12
7575
```
7676

7777
Note: the embedded C API and ObjectBox version can be looked up
@@ -98,5 +98,5 @@ Then manually:
9898
- Commit as
9999

100100
```text
101-
Update C-API [4.1.0 -> 4.2.0]
101+
Update C-API [4.2.0 -> 4.3.0]
102102
```

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.2.0'
21+
s.dependency 'ObjectBox', '4.3.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.2.0'
21+
s.dependency 'ObjectBox', '4.3.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
@@ -4,6 +4,8 @@
44
* Update ObjectBox database for Flutter Android apps to 4.3.0.
55
If your project is [using Admin](https://docs.objectbox.io/data-browser#admin-for-android), make
66
sure to update to `io.objectbox:objectbox-android-objectbrowser:4.3.0` in `android/app/build.gradle`.
7+
* Update ObjectBox database for Flutter iOS/macOS apps to 4.3.0.
8+
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
79

810
## 4.2.0 (2025-04-15)
911

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.2.0-sync'
21+
s.dependency 'ObjectBox', '4.3.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.2.0-sync'
17+
s.dependency 'ObjectBox', '4.3.0-sync'
1818

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

0 commit comments

Comments
 (0)