Skip to content

Commit f196f82

Browse files
Prepare release 3.6.0
1 parent 99df09b commit f196f82

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.1"
94+
ext.objectboxVersion = "3.6.0"
9595
repositories {
9696
mavenCentral()
9797
}

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
buildscript {
99
// Typically, only edit those two:
10-
val objectboxVersionNumber = "3.5.2" // without "-SNAPSHOT", e.g. "2.5.0" or "2.4.0-RC"
10+
val objectboxVersionNumber = "3.6.0" // 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

Lines changed: 2 additions & 2 deletions
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.1";
71+
public static final String JNI_VERSION = "3.6.0";
7272

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

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

0 commit comments

Comments
 (0)