Skip to content

Commit d20e1af

Browse files
committed
2.3.0
1 parent 650f0e1 commit d20e1af

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

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

7-
**Latest version: [2.2.0 (2018/09/27)](https://objectbox.io/changelog)**
7+
**Latest version: [2.3.0 (2018/12/29)](https://objectbox.io/changelog)**
88

99
Demo code using ObjectBox:
1010

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

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

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

3131
```groovy
3232
buildscript {
33-
ext.objectboxVersion = '2.2.0'
33+
ext.objectboxVersion = '2.3.0'
3434
dependencies {
3535
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
3636
}

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.3.0-SNAPSHOT'
6+
ob_version = '2.3.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.3.0-2018-09-28";
62+
private static final String VERSION = "2.3.0-2018-12-29";
6363
private static BoxStore defaultStore;
6464

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

0 commit comments

Comments
 (0)