Skip to content

Commit e01ecb6

Browse files
committed
Merge branch 'master' into dev
# Conflicts: # build.gradle
2 parents fc70aec + 61fe34a commit e01ecb6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.1.0-SNAPSHOT'
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)}. */

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ private static File getAndroidFilesDir(Object context) {
227227
}
228228

229229
/**
230-
* Sets the maximum number of concurrent readers. For most applications, the default is fine (> 100 readers).
230+
* Sets the maximum number of concurrent readers. For most applications, the default is fine (> 100 readers).
231231
* <p>
232232
* A "reader" is short for a thread involved in a read transaction.
233233
* <p>

objectbox-java/src/main/java/io/objectbox/exception/DbMaxReadersExceededException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Thrown when the maximum of readers (read transactions) was exceeded.
2424
* Verify that you run a reasonable amount of threads only.
2525
* <p>
26-
* If you intend to work with a very high number of threads (>100), consider increasing the number of maximum readers
26+
* If you intend to work with a very high number of threads (&gt;100), consider increasing the number of maximum readers
2727
* using {@link BoxStoreBuilder#maxReaders(int)} and enabling query retries using
2828
* {@link BoxStoreBuilder#queryAttempts(int)}.
2929
* <p>

0 commit comments

Comments
 (0)