Skip to content

Commit b922b05

Browse files
Update ObjectBox Swift [4.0.0 -> 4.0.1]
Bundled with C API 4.1.0 and ObjectBox 4.1.0-2025-01-30
1 parent 1848f64 commit b922b05

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

dev-doc/updating-c-library.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,22 @@ from the relevant objectbox repository release tag (like `java-4.1.0`).
5858
For the Flutter plugins on iOS/macOS ([view releases](https://github.com/objectbox/objectbox-swift/releases))
5959

6060
```bash
61-
./tool/set-swift-version.sh 4.0.1
61+
./tool/set-swift-version.sh 4.1.0
6262
```
6363

6464
```text
65-
* Flutter for iOS/macOS: update to [objectbox-swift 4.0.1](https://github.com/objectbox/objectbox-swift/releases/tag/v4.0.1).
65+
* Flutter for iOS/macOS: update to [objectbox-swift 4.1.0](https://github.com/objectbox/objectbox-swift/releases/tag/v4.1.0).
6666
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
6767
```
6868

6969
```text
7070
Update ObjectBox Swift [4.0.0 -> 4.0.1]
7171
72-
Bundled with C API 4.0.2 and ObjectBox 4.0.2-2024-10-15
72+
Bundled with C API 4.1.0 and ObjectBox 4.1.0-2025-01-30
7373
```
7474

7575
Note: the embedded C API and ObjectBox version can be looked up
76-
from the objectbox-swift release tag (like `v4.0.1`) and
76+
from the objectbox-swift release tag (like `v4.1.0`) and
7777
the objectbox commit it points to (see `external/objectbox`).
7878

7979
## Dart C API bindings

flutter_libs/ios/objectbox_flutter_libs.podspec

+1-1
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.0.1'
21+
s.dependency 'ObjectBox', '4.1.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

+1-1
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.0.1'
21+
s.dependency 'ObjectBox', '4.1.0'
2222

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

objectbox/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* Flutter for Android: update to [objectbox-android 4.1.0](https://github.com/objectbox/objectbox-java/releases/tag/V4.1.0).
55
If your project is [using Admin](https://docs.objectbox.io/data-browser#admin-for-android), make sure to
66
update to `io.objectbox:objectbox-android-objectbrowser:4.1.0` in `android/app/build.gradle`.
7+
* Flutter for iOS/macOS: update to [objectbox-swift 4.1.0](https://github.com/objectbox/objectbox-swift/releases/tag/v4.1.0).
8+
For existing projects, run `pod repo update` and `pod update ObjectBox` in the `ios` or `macos` directories.
79

810
## 4.0.3 (2024-10-17)
911

sync_flutter_libs/ios/objectbox_sync_flutter_libs.podspec

+1-1
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.0.1-sync'
21+
s.dependency 'ObjectBox', '4.1.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

+1-1
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.0.1-sync'
17+
s.dependency 'ObjectBox', '4.1.0-sync'
1818

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

0 commit comments

Comments
 (0)