Skip to content

Commit be98537

Browse files
committed
Preparing 5.3.1 release
1 parent 09b5ee0 commit be98537

File tree

14 files changed

+42
-13
lines changed

14 files changed

+42
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
ObjectBox C and C++ API Changelog
22
=================================
33

4+
5.3.1 (2026-03-26)
5+
------------------
6+
* Critical fix for sync clock handling without preset clock values (null)
7+
* Helper functions to extract timestamps from sync clock values
8+
49
5.3.0 (2026-03-23)
510
------------------
11+
**Warning:** Do not use sync clock properties in this version; use 5.3.1 instead!
12+
When putting an object with a sync clock that had no value set (e.g., "null"), it triggered a severe bug.
13+
614
* Change log level at runtime, i.e. `obx_log_level_set()`/`obx_log_level_get()`
715
* New log level "trace" for most internal details
816
* Log level "verbose" can now be enabled (debug log builds only)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ else ()
5555

5656
function(defineObjectBoxLib VARIANT)
5757
# Configuration updated for each release
58-
set(DL_VERSION 5.3.0)
58+
set(DL_VERSION 5.3.1)
5959

6060
# Platform detection and other setup
6161
set(DL_URL https://github.com/objectbox/objectbox-c/releases/download)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ box.put({.text = "Buy milk"});
1818
1919
See [ObjectBox C and C++ docs](https://cpp.objectbox.io/) for API details.
2020
21-
**Latest version: 5.3.0** (2026-03-23).
21+
**Latest version: 5.3.1** (2026-03-26).
2222
See [changelog](CHANGELOG.md) for more details.
2323
2424
## Table of Contents:

download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tty -s || quiet=true
4444

4545
# Note: optional arguments like "--quiet" shifts argument positions in the case block above
4646

47-
version=${1:-5.3.0}
47+
version=${1:-5.3.1}
4848
os=${2:-$(uname)}
4949
arch=${3:-$(uname -m)}
5050
echo "Base config: OS ${os} and architecture ${arch}"

doxygen/Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,16 @@
33
ObjectBox C and C++ API Changelog
44
=================================
55

6+
5.3.1 (2026-03-26)
7+
------------------
8+
* Critical fix for sync clock handling without preset clock values (null)
9+
* Helper functions to extract timestamps from sync clock values
10+
611
5.3.0 (2026-03-23)
712
------------------
13+
**Warning:** Do not use sync clock properties in this version; use 5.3.1 instead!
14+
When putting an object with a sync clock that had no value set (e.g., "null"), it triggered a severe bug.
15+
816
* Change log level at runtime, i.e. `obx_log_level_set()`/`obx_log_level_get()`
917
* New log level "trace" for most internal details
1018
* Log level "verbose" can now be enabled (debug log builds only)

doxygen/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "ObjectBox C and C++ API"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "5.3.0"
41+
PROJECT_NUMBER = "5.3.1"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

examples/c-tasks-lowlevel/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.3.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.3.1 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

examples/c-tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.3.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.3.1 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

examples/tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.3.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.3.1 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

examples/vectorsearch-cities/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.3.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.3.1 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

0 commit comments

Comments
 (0)