Skip to content

Commit d2dabde

Browse files
Update C library [5.0.0-rc -> 5.0.0]
Includes database 5.0.0-2025-11-27
1 parent c48efc1 commit d2dabde

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

dev-doc/updating-c-library.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ for the binding update script (see below) and
1919
for Flutter (`flutter_libs` and `sync_flutter_libs` plugins) on Linux and Windows:
2020

2121
```bash
22-
./tool/set-c-version.sh 5.0.0-rc
22+
./tool/set-c-version.sh 5.0.0
2323
```
2424

2525
```text
26-
* Update ObjectBox database for Flutter Linux/Windows, Dart Native apps to [5.0.0-rc](https://github.com/objectbox/objectbox-c/releases/tag/v5.0.0-rc).
26+
* Update ObjectBox database for Flutter Linux/Windows, Dart Native apps to [5.0.0](https://github.com/objectbox/objectbox-c/releases/tag/v5.0.0).
2727
```
2828

2929
```text
30-
Update C library [4.3.1 -> 5.0.0-rc]
30+
Update C library [5.0.0-rc -> 5.0.0]
3131
32-
Includes database 5.0.0-2025-09-27
32+
Includes database 5.0.0-2025-11-27
3333
```
3434

3535
### Android

flutter_libs/linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ target_link_libraries(${PLUGIN_NAME} PRIVATE PkgConfig::GTK)
4747
# ----------------------------------------------------------------------
4848
# Download and add objectbox-c prebuilt library.
4949

50-
set(OBJECTBOX_VERSION 5.0.0-rc)
50+
set(OBJECTBOX_VERSION 5.0.0)
5151

5252
set(OBJECTBOX_ARCH ${CMAKE_SYSTEM_PROCESSOR})
5353
if (${OBJECTBOX_ARCH} MATCHES "x86_64")

flutter_libs/windows/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ set(objectbox_flutter_libs_bundled_libraries
5656
# ----------------------------------------------------------------------
5757
# Download and add objectbox-c prebuilt library.
5858

59-
set(OBJECTBOX_VERSION 5.0.0-rc)
59+
set(OBJECTBOX_VERSION 5.0.0)
6060

6161
set(OBJECTBOX_ARCH ${CMAKE_SYSTEM_PROCESSOR})
6262
if (${OBJECTBOX_ARCH} MATCHES "AMD64")

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -eu
55
# It's important that the generated dart bindings and the c-api library version match. Dart won't error on C function
66
# signature mismatch, leading to obscure memory bugs.
77
# For how to upgrade the version see dev-doc/updating-c-library.md
8-
cLibVersion=5.0.0-rc
8+
cLibVersion=5.0.0
99
os=$(uname)
1010
cLibArgs="$*"
1111

objectbox/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## latest
22

3+
* Update ObjectBox database for Flutter Linux/Windows, Dart Native apps to [5.0.0](https://github.com/objectbox/objectbox-c/releases/tag/v5.0.0).
4+
35
## 5.0.2 (2025-11-10)
46

57
* macOS: throw an error if the `macosApplicationGroup` parameter when opening a `Store` is too long

sync_flutter_libs/linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ target_link_libraries(${PLUGIN_NAME} PRIVATE PkgConfig::GTK)
4747
# ----------------------------------------------------------------------
4848
# Download and add objectbox-c prebuilt library.
4949

50-
set(OBJECTBOX_VERSION 5.0.0-rc)
50+
set(OBJECTBOX_VERSION 5.0.0)
5151

5252
set(OBJECTBOX_ARCH ${CMAKE_SYSTEM_PROCESSOR})
5353
if (${OBJECTBOX_ARCH} MATCHES "x86_64")

sync_flutter_libs/windows/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ set(objectbox_sync_flutter_libs_bundled_libraries
5656
# ----------------------------------------------------------------------
5757
# Download and add objectbox-c prebuilt library.
5858

59-
set(OBJECTBOX_VERSION 5.0.0-rc)
59+
set(OBJECTBOX_VERSION 5.0.0)
6060

6161
set(OBJECTBOX_ARCH ${CMAKE_SYSTEM_PROCESSOR})
6262
if (${OBJECTBOX_ARCH} MATCHES "AMD64")

tool/update-c-binding.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# copies the header files, makes some required modifications
66
# and runs the ffigen binding generator on them.
77

8-
cLibVersion=5.0.0-rc
8+
cLibVersion=5.0.0
99
echo "Downloading C library source files from GitHub..."
1010

1111
# Note: the release archives do not contain objectbox-dart.h, so get the full sources.

0 commit comments

Comments
 (0)