Skip to content

Commit 4f57283

Browse files
committed
Prepare release 5.4.1
1 parent a48241f commit 4f57283

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Notable changes to the ObjectBox Java library.
44

55
For more insights into what changed in the database libraries, [check the ObjectBox C changelog](https://github.com/objectbox/objectbox-c/blob/main/CHANGELOG.md).
66

7-
## Next release
7+
## 5.4.1 - 2026-03-26
8+
9+
### Sync
10+
11+
- Critical fix for sync clock property handling
812

913
## 5.4.0 - 2026-03-24
1014

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ agp = "AGP_VERSION"
151151
kotlin = "KOTLIN_VERSION"
152152

153153
# Define a variable for the version of the ObjectBox plugin
154-
objectbox = "5.4.0"
154+
objectbox = "5.4.1"
155155

156156
[plugins]
157157
# For an Android project, using Android Gradle Plugin 9.0 or newer
@@ -251,7 +251,7 @@ Your project can now use ObjectBox, continue by [defining entity classes](https:
251251

252252
plugins {
253253
// Add the ObjectBox plugin
254-
id("io.objectbox") version "5.4.0" apply false
254+
id("io.objectbox") version "5.4.1" apply false
255255
}
256256
```
257257

@@ -283,7 +283,7 @@ dependencyResolutionManagement {
283283

284284
buildscript {
285285
// Define a variable for the ObjectBox plugin version
286-
val objectboxVersion by extra("5.4.0")
286+
val objectboxVersion by extra("5.4.1")
287287

288288
repositories {
289289
// Add Maven Central to the plugin repositories
@@ -313,7 +313,7 @@ allprojects {
313313
314314
buildscript {
315315
// Define a variable for the ObjectBox plugin version
316-
ext.objectboxVersion = "5.4.0"
316+
ext.objectboxVersion = "5.4.1"
317317
318318
repositories {
319319
// Add Maven Central to the plugin repositories

objectbox-java/src/main/java/io/objectbox/BoxStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class BoxStore implements Closeable {
8282
* ReLinker uses this as a suffix for the extracted shared library file. If different, it will update it. Should be
8383
* unique to avoid conflicts.
8484
*/
85-
public static final String JNI_VERSION = "5.3.0-2026-03-23";
85+
public static final String JNI_VERSION = "5.3.1-2026-03-26";
8686

8787
/**
8888
* The ObjectBox database version this Java library is known to work with.
@@ -92,7 +92,7 @@ public class BoxStore implements Closeable {
9292
* This is used (currently only in tests) to make sure a database library has a compatible JNI API by checking the
9393
* version number matches exactly and the date is the same or newer.
9494
*/
95-
private static final String VERSION = "5.3.0-2026-03-23";
95+
private static final String VERSION = "5.3.1-2026-03-26";
9696

9797
private static final String OBJECTBOX_PACKAGE_NAME = "objectbox";
9898
private static BoxStore defaultStore;

0 commit comments

Comments
 (0)