Skip to content

Commit 61fe34a

Browse files
committed
2.1.0
1 parent 71f5d8a commit 61fe34a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# ObjectBox Java (Kotlin, Android)
44
ObjectBox is a superfast object-oriented database with strong relation support. ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
55

6-
**Latest version: [2.0.0 (2018/07/25)](http://objectbox.io/changelog)**
6+
**Latest version: [2.1.0 (2018/08/15)](https://objectbox.io/changelog)**
77

88
Demo code using ObjectBox:
99

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

2121
```groovy
2222
buildscript {
23-
ext.objectboxVersion = '2.0.0'
23+
ext.objectboxVersion = '2.1.0'
2424
dependencies {
2525
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
2626
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version = ob_version
33

44
buildscript {
55
ext {
6-
ob_version = '2.0.0'
6+
ob_version = '2.1.0'
77
ob_native_version = ob_version // Be careful to diverge here; easy to forget and hard to find JNI problems
88
ob_expected_version = project.hasProperty('expectedVersion') ? project.property('expectedVersion') : 'UNDEFINED'
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
@ThreadSafe
6060
public class BoxStore implements Closeable {
6161

62-
private static final String VERSION = "2.0.0-2018-07-25";
62+
private static final String VERSION = "2.1.0-2018-08-15";
6363
private static BoxStore defaultStore;
6464

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

0 commit comments

Comments
 (0)