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 44ObjectBox is a superfast object-oriented database with strong relation support.
55ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
66
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 ) **
88
99Demo code using ObjectBox:
1010
@@ -21,6 +21,7 @@ ObjectBox supports multiple platforms and languages.
2121Besides 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)
24+ * [ ObjectBox Dart/Flutter] ( https://github.com/objectbox/objectbox-dart ) : cross-plattform for mobile and desktop apps (beta)
2425* [ ObjectBox Go] ( https://github.com/objectbox/objectbox-go ) : great for data-driven tools and small server applications
2526* [ ObjectBox C API] ( https://github.com/objectbox/objectbox-c ) : native speed with zero copy access to FlatBuffer objects
2627
@@ -30,7 +31,7 @@ Add this to your root build.gradle (project level):
3031
3132``` groovy
3233buildscript {
33- ext.objectboxVersion = '2.4.1 '
34+ ext.objectboxVersion = '2.5.0 '
3435 dependencies {
3536 classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
3637 }
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ buildscript {
66 // version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
77 def versionPostFixValue = project. findProperty(' versionPostFix' )
88 def versionPostFix = versionPostFixValue ? " -$versionPostFixValue " : ' '
9- ob_version = " 2.4.2 $versionPostFix -SNAPSHOT"
9+ ob_version = " 2.5.0 $versionPostFix -SNAPSHOT"
1010 println " ObjectBox Java version $ob_version "
1111
1212 ob_expected_version = project. hasProperty(' expectedVersion' ) ? project. property(' expectedVersion' ) : ' UNDEFINED'
1313
1414 // Core version for tests
1515 // 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"
1717
1818 def osName = System . getProperty(" os.name" ). toLowerCase()
1919 objectboxPlatform = osName. contains(' linux' ) ? ' linux'
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ public class BoxStore implements Closeable {
6464 @ Nullable public static Object relinker ;
6565
6666 /** 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 " ;
6868
69- private static final String VERSION = "2.4.2 -2019-10-29 " ;
69+ private static final String VERSION = "2.5.0 -2019-12-12 " ;
7070 private static BoxStore defaultStore ;
7171
7272 /** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */
You can’t perform that action at this time.
0 commit comments