Skip to content

Commit 47a05a7

Browse files
Prepare version 2.6.0.
1 parent b552b74 commit 47a05a7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It will - literally - take just a minute, but help us a lot. Thank you!​ 🙏
1010
ObjectBox is a superfast object-oriented database with strong relation support.
1111
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
1212

13-
**Latest version: [2.5.1 (2020/02/10)](https://docs.objectbox.io/#objectbox-changelog)**
13+
**Latest version: [2.6.0 (2020/06/09)](https://docs.objectbox.io/#objectbox-changelog)**
1414

1515
Demo code using ObjectBox:
1616

@@ -37,7 +37,7 @@ Add this to your root build.gradle (project level):
3737

3838
```groovy
3939
buildscript {
40-
ext.objectboxVersion = '2.5.1'
40+
ext.objectboxVersion = '2.6.0'
4141
dependencies {
4242
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
4343
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
ext {
33
// Typically, only edit those two:
44
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
5+
def objectboxVersionRelease = true // 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')

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

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

6666
/** Change so ReLinker will update native library when using workaround loading. */
67-
public static final String JNI_VERSION = "2.6.0-RC";
67+
public static final String JNI_VERSION = "2.6.0";
6868

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

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

0 commit comments

Comments
 (0)