Skip to content

Commit 22ea3ad

Browse files
Prepare Java release 4.3.1
1 parent dfdc53a commit 22ea3ad

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

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

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

7-
## 4.3.1 - in development
7+
## 4.3.1 - 2025-08-12
88

99
- Requires at least Kotlin compiler and standard library 1.7.
1010
- Data Observers: closing a Query now waits on a running publisher to finish its query, preventing a VM crash. [#1147](https://github.com/objectbox/objectbox-java/issues/1147)
11+
- Update database libraries for Android and JVM to version `4.3.1` (include database version `4.3.1-2025-08-02`).
1112

1213
## 4.3.0 - 2025-05-13
1314

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ For Gradle projects, add the ObjectBox Gradle plugin to your root Gradle script:
114114
```kotlin
115115
// build.gradle.kts
116116
buildscript {
117-
val objectboxVersion by extra("4.3.0")
117+
val objectboxVersion by extra("4.3.1")
118118
repositories {
119119
mavenCentral()
120120
}
@@ -130,7 +130,7 @@ buildscript {
130130
// build.gradle.kts
131131
plugins {
132132
id("com.android.application") version "8.0.2" apply false // When used in an Android project
133-
id("io.objectbox") version "4.3.0" apply false
133+
id("io.objectbox") version "4.3.1" apply false
134134
}
135135
```
136136

@@ -154,7 +154,7 @@ pluginManagement {
154154
```groovy
155155
// build.gradle
156156
buildscript {
157-
ext.objectboxVersion = "4.3.0"
157+
ext.objectboxVersion = "4.3.1"
158158
repositories {
159159
mavenCentral()
160160
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ public class BoxStore implements Closeable {
7777
* ReLinker uses this as a suffix for the extracted shared library file. If different, it will update it. Should be
7878
* unique to avoid conflicts.
7979
*/
80-
public static final String JNI_VERSION = "4.3.0-2025-05-12";
80+
public static final String JNI_VERSION = "4.3.1-2025-08-02";
8181

8282
/** The ObjectBox database version this Java library is known to work with. */
83-
private static final String VERSION = "4.3.1-2025-07-28";
83+
private static final String VERSION = "4.3.1-2025-08-02";
8484
private static BoxStore defaultStore;
8585

8686
/** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */

0 commit comments

Comments
 (0)