Skip to content

Commit 4de0fdf

Browse files
Prepare release 5.4.2
1 parent 2d8bf69 commit 4de0fdf

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +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-
## 5.4.2-preview1 - 2026-04-28
7+
## 5.4.2 - 2026-05-05
88

99
- Update Android and JVM libraries to database version `5.3.2-2026-05-05`
10+
- Fixed a corner case with "unique replace on conflict" and absent (e.g. null) sync clock value
11+
- Internal fixes and improvements
1012

1113
## 5.4.1 - 2026-03-26
1214

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.2-preview1"
154+
objectbox = "5.4.2"
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.2-preview1" apply false
254+
id("io.objectbox") version "5.4.2" 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.2-preview1")
286+
val objectboxVersion by extra("5.4.2")
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.2-preview1"
316+
ext.objectboxVersion = "5.4.2"
317317
318318
repositories {
319319
// Add Maven Central to the plugin repositories

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ buildscript {
3333

3434
// Version of Maven artifacts
3535
// Should only be changed as part of the release process, see the release checklist in the objectbox repo
36-
val versionNumber = "5.4.2-preview1"
36+
val versionNumber = "5.4.2"
3737

3838
// If OBX_RELEASE is set, build and depend on release versions. Doesn't publish a release.
3939
// See the release checklist in the objectbox repo on how to publish a release.

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

Lines changed: 1 addition & 1 deletion
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.1-2026-04-24";
85+
public static final String JNI_VERSION = "5.3.2-2026-05-05";
8686

8787
/**
8888
* The ObjectBox database version this Java library is known to work with.

0 commit comments

Comments
 (0)