Skip to content

Commit 289cc2c

Browse files
Prepare Java release 4.0.1
1 parent cdc58bd commit 289cc2c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle
7373

7474
```groovy
7575
buildscript {
76-
ext.objectboxVersion = "4.0.0"
76+
ext.objectboxVersion = "4.0.1"
7777
repositories {
7878
mavenCentral()
7979
}

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ buildscript {
1616
// Typically, only edit those two:
1717
val objectboxVersionNumber = "4.0.1" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
1818
val objectboxVersionRelease =
19-
false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
19+
true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
2020

2121
// version post fix: "-<value>" or "" if not defined; e.g. used by CI to pass in branch name
2222
val versionPostFixValue = project.findProperty("versionPostFix")

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public class BoxStore implements Closeable {
7474
public static final String IN_MEMORY_PREFIX = "memory:";
7575

7676
/** Change so ReLinker will update native library when using workaround loading. */
77-
public static final String JNI_VERSION = "4.0.0";
77+
public static final String JNI_VERSION = "4.0.1";
7878

7979
private static final String VERSION = "4.0.0-2024-05-14";
8080
private static BoxStore defaultStore;

0 commit comments

Comments
 (0)