File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-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.0 RC (2019/10/03)] ( https://objectbox.io/changelog ) **
8
-
9
- ** Latest stable version: [ 2.3.4 (2019/03/19)] ( https://objectbox.io/changelog ) **
7
+ ** Latest version: [ 2.4.0 (2019/10/15)] ( https://objectbox.io/changelog ) **
10
8
11
9
Demo code using ObjectBox:
12
10
@@ -32,7 +30,7 @@ Add this to your root build.gradle (project level):
32
30
33
31
``` groovy
34
32
buildscript {
35
- ext.objectboxVersion = '2.3.4 '
33
+ ext.objectboxVersion = '2.4.0 '
36
34
dependencies {
37
35
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
38
36
}
Original file line number Diff line number Diff line change @@ -6,14 +6,16 @@ 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.0$versionPostFix -SNAPSHOT"
9
+ // ob_version = "2.4.0$versionPostFix-SNAPSHOT"
10
+ ob_version = " 2.4.0"
10
11
println " ObjectBox Java version $ob_version "
11
12
12
13
ob_expected_version = project. hasProperty(' expectedVersion' ) ? project. property(' expectedVersion' ) : ' UNDEFINED'
13
14
14
15
// Core version for tests
15
16
// Be careful to diverge here; easy to forget and hard to find JNI problems
16
- ob_native_version = " 2.4.0-dev-SNAPSHOT"
17
+ // ob_native_version = "2.4.0-dev-SNAPSHOT"
18
+ ob_native_version = " 2.4.0"
17
19
18
20
def osName = System . getProperty(" os.name" ). toLowerCase()
19
21
objectboxPlatform = osName. contains(' linux' ) ? ' linux'
You can’t perform that action at this time.
0 commit comments