Skip to content

Commit cd2556f

Browse files
Prepare Java release 3.7.1
1 parent 5d32db4 commit cd2556f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ For Android projects, add the ObjectBox Gradle plugin to your root `build.gradle
7171

7272
```groovy
7373
buildscript {
74-
ext.objectboxVersion = "3.7.0"
74+
ext.objectboxVersion = "3.7.1"
7575
repositories {
7676
mavenCentral()
7777
}

build.gradle.kts

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ public class BoxStore implements Closeable {
7070
@Nullable private static Object relinker;
7171

7272
/** Change so ReLinker will update native library when using workaround loading. */
73-
public static final String JNI_VERSION = "3.7.0";
73+
public static final String JNI_VERSION = "3.7.1";
7474

75-
private static final String VERSION = "3.7.0-2023-08-22";
75+
private static final String VERSION = "3.7.1-2023-11-07";
7676
private static BoxStore defaultStore;
7777

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

0 commit comments

Comments
 (0)