Skip to content

Commit 1e51085

Browse files
committed
2.8.0
1 parent 454865d commit 1e51085

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<img width="466" src="https://raw.githubusercontent.com/objectbox/objectbox-java/master/logo.png">
22

3-
[![Follow ObjectBox on Twitter](https://img.shields.io/twitter/follow/ObjectBox_io.svg?style=flat-square&logo=twitter&color=fff)](https://twitter.com/ObjectBox_io)
3+
[![Follow ObjectBox on Twitter](https://img.shields.io/twitter/follow/ObjectBox_io.svg?style=flat-square&logo=twitter)](https://twitter.com/intent/follow?screen_name=ObjectBox_io)
44

55
# ObjectBox Java (Kotlin, Android)
66
ObjectBox is a superfast object-oriented database with strong relation support.
77
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
88

9-
**Latest version: [2.7.1 (2020/08/19)](https://docs.objectbox.io/#objectbox-changelog)**
9+
**Latest version: [2.8.0 (2020/11/04)](https://docs.objectbox.io/#objectbox-changelog)**
1010

1111
Demo code using ObjectBox:
1212

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

3434
```groovy
3535
buildscript {
36-
ext.objectboxVersion = '2.7.1'
36+
ext.objectboxVersion = '2.8.0'
3737
dependencies {
3838
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
3939
}

build.gradle

Lines changed: 2 additions & 2 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.7.2' // 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
4+
def objectboxVersionNumber = '2.8.0' // 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
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
@@ -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 = "2.7.1";
71+
public static final String JNI_VERSION = "2.8.0";
7272

73-
private static final String VERSION = "2.7.2-2020-08-19";
73+
private static final String VERSION = "2.8.0-2020-11-04";
7474
private static BoxStore defaultStore;
7575

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

0 commit comments

Comments
 (0)