Skip to content

Commit

Permalink
Prepare Java release 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot-team committed Jun 3, 2024
1 parent cdc58bd commit 289cc2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.0"
ext.objectboxVersion = "4.0.1"
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 {
// Typically, only edit those two:
val objectboxVersionNumber = "4.0.1" // 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
2 changes: 1 addition & 1 deletion objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class BoxStore implements Closeable {
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.0";
public static final String JNI_VERSION = "4.0.1";

private static final String VERSION = "4.0.0-2024-05-14";
private static BoxStore defaultStore;
Expand Down

0 comments on commit 289cc2c

Please sign in to comment.