Skip to content

Commit 9347848

Browse files
Prepare Java release 4.0.3
1 parent 6a3fb19 commit 9347848

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.2"
76+
ext.objectboxVersion = "4.0.3"
7777
repositories {
7878
mavenCentral()
7979
}

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ buildscript {
1616
// To publish a release, typically, only edit those two:
1717
val objectboxVersionNumber = "4.0.3" // 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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,11 @@ public class BoxStore implements Closeable {
7373
/** Prefix supplied with database directory to signal a file-less and in-memory database should be used. */
7474
public static final String IN_MEMORY_PREFIX = "memory:";
7575

76-
/** Change so ReLinker will update native library when using workaround loading. */
77-
public static final String JNI_VERSION = "4.0.2";
76+
/** ReLinker uses this as a suffix for the extracted shared library file. If different, it will update it. */
77+
public static final String JNI_VERSION = "4.0.2-2024-10-15";
7878

79-
private static final String VERSION = "4.0.2-2024-08-19";
79+
/** The native or core version of ObjectBox the Java library is known to work with. */
80+
private static final String VERSION = "4.0.2-2024-10-15";
8081
private static BoxStore defaultStore;
8182

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

0 commit comments

Comments
 (0)