Skip to content

Commit

Permalink
Prepare Java release 4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Oct 15, 2024
1 parent 6a3fb19 commit 9347848
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle

```groovy
buildscript {
ext.objectboxVersion = "4.0.2"
ext.objectboxVersion = "4.0.3"
repositories {
mavenCentral()
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
// To publish a release, typically, only edit those two:
val objectboxVersionNumber = "4.0.3" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
val objectboxVersionRelease =
false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions

// version post fix: "-<value>" or "" if not defined; e.g. used by CI to pass in branch name
val versionPostFixValue = project.findProperty("versionPostFix")
Expand Down
7 changes: 4 additions & 3 deletions objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,11 @@ public class BoxStore implements Closeable {
/** Prefix supplied with database directory to signal a file-less and in-memory database should be used. */
public static final String IN_MEMORY_PREFIX = "memory:";

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

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

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

0 comments on commit 9347848

Please sign in to comment.