Skip to content

Commit 239fe8f

Browse files
committed
2.6.0-SNAPSHOT
1 parent 220fc35 commit 239fe8f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
buildscript {
22
ext {
33
// Typically, only edit those two:
4-
def objectboxVersionNumber = '2.6.0-RC' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
5-
def objectboxVersionRelease = true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
4+
def objectboxVersionNumber = '2.6.0' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
5+
def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
66

77
// version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
88
def versionPostFixValue = project.findProperty('versionPostFix')
@@ -21,7 +21,7 @@ buildscript {
2121

2222
junit_version = '4.13'
2323
mockito_version = '3.3.3'
24-
kotlin_version = '1.3.61'
24+
kotlin_version = '1.3.72'
2525
dokka_version = '0.10.1'
2626

2727
println "version=$ob_version"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class BoxStore implements Closeable {
6666
/** Change so ReLinker will update native library when using workaround loading. */
6767
public static final String JNI_VERSION = "2.6.0-RC";
6868

69-
private static final String VERSION = "2.6.0-2020-04-26";
69+
private static final String VERSION = "2.6.0-2020-04-30";
7070
private static BoxStore defaultStore;
7171

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

0 commit comments

Comments
 (0)