Skip to content

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Dec 29, 2018
1 parent 650f0e1 commit d20e1af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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.2.0 (2018/09/27)](https://objectbox.io/changelog)**
**Latest version: [2.3.0 (2018/12/29)](https://objectbox.io/changelog)**

Demo code using ObjectBox:

Expand All @@ -17,7 +17,7 @@ box.put(playlist);

Other languages/bindings
------------------------
ObjectBox is a multi platform database supporting multiple language.
ObjectBox supports multiple platforms and languages.
Besides JVM based languages like Java and Kotlin, ObjectBox also offers:

* [ObjectBox Swift](https://github.com/objectbox/objectbox-swift): build fast mobile apps for iOS (and macOS)
Expand All @@ -30,7 +30,7 @@ Add this to your root build.gradle (project level):

```groovy
buildscript {
ext.objectboxVersion = '2.2.0'
ext.objectboxVersion = '2.3.0'
dependencies {
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = ob_version

buildscript {
ext {
ob_version = '2.3.0-SNAPSHOT'
ob_version = '2.3.0'
ob_native_version = ob_version // Be careful to diverge here; easy to forget and hard to find JNI problems
ob_expected_version = project.hasProperty('expectedVersion') ? project.property('expectedVersion') : 'UNDEFINED'

Expand Down
2 changes: 1 addition & 1 deletion objectbox-java/src/main/java/io/objectbox/BoxStore.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
@ThreadSafe
public class BoxStore implements Closeable {

private static final String VERSION = "2.3.0-2018-09-28";
private static final String VERSION = "2.3.0-2018-12-29";
private static BoxStore defaultStore;

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

0 comments on commit d20e1af

Please sign in to comment.