From 47a05a7096f4139bc8cda2d6999a78dff77606df Mon Sep 17 00:00:00 2001 From: greenrobot Team Date: Tue, 9 Jun 2020 12:11:43 +0200 Subject: [PATCH] Prepare version 2.6.0. --- README.md | 4 ++-- build.gradle | 2 +- objectbox-java/src/main/java/io/objectbox/BoxStore.java | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 767e218c..0493b6e3 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ It will - literally - take just a minute, but help us a lot. Thank you!​ 🙏 ObjectBox is a superfast object-oriented database with strong relation support. ObjectBox is embedded into your Android, Linux, macOS, or Windows app. -**Latest version: [2.5.1 (2020/02/10)](https://docs.objectbox.io/#objectbox-changelog)** +**Latest version: [2.6.0 (2020/06/09)](https://docs.objectbox.io/#objectbox-changelog)** Demo code using ObjectBox: @@ -37,7 +37,7 @@ Add this to your root build.gradle (project level): ```groovy buildscript { - ext.objectboxVersion = '2.5.1' + ext.objectboxVersion = '2.6.0' dependencies { classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion" } diff --git a/build.gradle b/build.gradle index 61e3e34d..ca14ec4c 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ buildscript { ext { // Typically, only edit those two: def objectboxVersionNumber = '2.6.0' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC' - def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions + def objectboxVersionRelease = true // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions // version post fix: '-' or '' if not defined; e.g. used by CI to pass in branch name def versionPostFixValue = project.findProperty('versionPostFix') diff --git a/objectbox-java/src/main/java/io/objectbox/BoxStore.java b/objectbox-java/src/main/java/io/objectbox/BoxStore.java index 5aadf67a..e2a20ef7 100644 --- a/objectbox-java/src/main/java/io/objectbox/BoxStore.java +++ b/objectbox-java/src/main/java/io/objectbox/BoxStore.java @@ -64,9 +64,9 @@ public class BoxStore implements Closeable { @Nullable private static Object relinker; /** Change so ReLinker will update native library when using workaround loading. */ - public static final String JNI_VERSION = "2.6.0-RC"; + public static final String JNI_VERSION = "2.6.0"; - private static final String VERSION = "2.6.0-2020-04-30"; + private static final String VERSION = "2.6.0-2020-06-09"; private static BoxStore defaultStore; /** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */