Skip to content

Commit 2d89b4e

Browse files
Prepare Java release 5.0.1
1 parent edbed89 commit 2d89b4e

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,8 +4,9 @@ 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-
## 5.0.1 - in development
7+
## 5.0.1 - 2025-09-30
88

9+
- Include runtime libraries for Android and JVM with database version `5.0.0-2025-09-27`.
910
- Fixed a race condition with a closing store and still active transactions that kept the store from closing.
1011
For Android this may fix some rare ANR issues.
1112

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("5.0.0")
117+
val objectboxVersion by extra("5.0.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 "5.0.0" apply false
133+
id("io.objectbox") version "5.0.1" apply false
134134
}
135135
```
136136

@@ -154,7 +154,7 @@ pluginManagement {
154154
```groovy
155155
// build.gradle
156156
buildscript {
157-
ext.objectboxVersion = "5.0.0"
157+
ext.objectboxVersion = "5.0.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
@@ -78,10 +78,10 @@ public class BoxStore implements Closeable {
7878
* ReLinker uses this as a suffix for the extracted shared library file. If different, it will update it. Should be
7979
* unique to avoid conflicts.
8080
*/
81-
public static final String JNI_VERSION = "5.0.0-2025-09-16";
81+
public static final String JNI_VERSION = "5.0.0-2025-09-27";
8282

8383
/** The ObjectBox database version this Java library is known to work with. */
84-
private static final String VERSION = "5.0.0-2025-09-16";
84+
private static final String VERSION = "5.0.0-2025-09-27";
8585

8686
private static final String OBJECTBOX_PACKAGE_NAME = "objectbox";
8787
private static BoxStore defaultStore;

0 commit comments

Comments
 (0)