Skip to content

Commit 0e40cec

Browse files
Prepare release 3.5.1
1 parent 6ad6f45 commit 0e40cec

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

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

9292
```groovy
9393
buildscript {
94-
ext.objectboxVersion = "3.5.0"
94+
ext.objectboxVersion = "3.5.1"
9595
repositories {
9696
mavenCentral()
9797
}

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
// Typically, only edit those two:
1010
val objectboxVersionNumber = "3.5.1" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
1111
val objectboxVersionRelease =
12-
false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
12+
true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
1313

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

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ public class BoxStore implements Closeable {
6868
@Nullable private static Object relinker;
6969

7070
/** Change so ReLinker will update native library when using workaround loading. */
71-
public static final String JNI_VERSION = "3.5.0";
71+
public static final String JNI_VERSION = "3.5.1";
7272

73-
private static final String VERSION = "3.5.0-2022-12-05";
73+
private static final String VERSION = "3.5.1-2023-01-26";
7474
private static BoxStore defaultStore;
7575

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

0 commit comments

Comments
 (0)