Skip to content

Commit c9ede74

Browse files
2.3.4
1 parent 5547283 commit c9ede74

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
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.3.3 (2019/02/13)](https://objectbox.io/changelog)**
7+
**Latest version: [2.3.4 (2019/03/19)](https://objectbox.io/changelog)**
88

99
Demo code using ObjectBox:
1010

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

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

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version = ob_version
33

44
buildscript {
55
ext {
6-
ob_version = '2.4.0-SNAPSHOT'
6+
ob_version = '2.3.4'
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ public class BoxStore implements Closeable {
6363
@Nullable public static Object context;
6464
@Nullable public static Object relinker;
6565
/** Change so ReLinker will update native library when using workaround loading. */
66-
public static final String JNI_VERSION = "2.4.0";
66+
public static final String JNI_VERSION = "2.3.4";
6767

68-
private static final String VERSION = "2.4.0-2019-02-14";
68+
private static final String VERSION = "2.3.4-2019-03-19";
6969
private static BoxStore defaultStore;
7070

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

0 commit comments

Comments
 (0)