File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
objectbox-java/src/main/java/io/objectbox Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 4
4
ObjectBox is a superfast object-oriented database with strong relation support.
5
5
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
6
6
7
- ** Latest version: [ 2.4.1 (2019/10/29 )] ( https://objectbox.io/changelog ) **
7
+ ** Latest version: [ 2.5.0 (2019/12/12 )] ( https://docs. objectbox.io/#objectbox- changelog ) **
8
8
9
9
Demo code using ObjectBox:
10
10
@@ -21,6 +21,7 @@ ObjectBox supports multiple platforms and languages.
21
21
Besides JVM based languages like Java and Kotlin, ObjectBox also offers:
22
22
23
23
* [ ObjectBox Swift] ( https://github.com/objectbox/objectbox-swift ) : build fast mobile apps for iOS (and macOS)
24
+ * [ ObjectBox Dart/Flutter] ( https://github.com/objectbox/objectbox-dart ) : cross-plattform for mobile and desktop apps (beta)
24
25
* [ ObjectBox Go] ( https://github.com/objectbox/objectbox-go ) : great for data-driven tools and small server applications
25
26
* [ ObjectBox C API] ( https://github.com/objectbox/objectbox-c ) : native speed with zero copy access to FlatBuffer objects
26
27
@@ -30,7 +31,7 @@ Add this to your root build.gradle (project level):
30
31
31
32
``` groovy
32
33
buildscript {
33
- ext.objectboxVersion = '2.4.1 '
34
+ ext.objectboxVersion = '2.5.0 '
34
35
dependencies {
35
36
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
36
37
}
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ buildscript {
6
6
// version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
7
7
def versionPostFixValue = project. findProperty(' versionPostFix' )
8
8
def versionPostFix = versionPostFixValue ? " -$versionPostFixValue " : ' '
9
- ob_version = " 2.4.2 $versionPostFix -SNAPSHOT"
9
+ ob_version = " 2.5.0 $versionPostFix -SNAPSHOT"
10
10
println " ObjectBox Java version $ob_version "
11
11
12
12
ob_expected_version = project. hasProperty(' expectedVersion' ) ? project. property(' expectedVersion' ) : ' UNDEFINED'
13
13
14
14
// Core version for tests
15
15
// Be careful to diverge here; easy to forget and hard to find JNI problems
16
- ob_native_version = " 2.4.2 -dev-SNAPSHOT"
16
+ ob_native_version = " 2.5.0 -dev-SNAPSHOT"
17
17
18
18
def osName = System . getProperty(" os.name" ). toLowerCase()
19
19
objectboxPlatform = osName. contains(' linux' ) ? ' linux'
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ public class BoxStore implements Closeable {
64
64
@ Nullable public static Object relinker ;
65
65
66
66
/** Change so ReLinker will update native library when using workaround loading. */
67
- public static final String JNI_VERSION = "2.4.2 " ;
67
+ public static final String JNI_VERSION = "2.5.0 " ;
68
68
69
- private static final String VERSION = "2.4.2 -2019-10-29 " ;
69
+ private static final String VERSION = "2.5.0 -2019-12-12 " ;
70
70
private static BoxStore defaultStore ;
71
71
72
72
/** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */
You can’t perform that action at this time.
0 commit comments