File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -6,16 +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.0$versionPostFix-SNAPSHOT"
10
- ob_version = " 2.4.0-RC" // Release; don't use versionPostFix
9
+ ob_version = " 2.4.0$versionPostFix -SNAPSHOT"
11
10
println " ObjectBox Java version $ob_version "
12
11
13
12
ob_expected_version = project. hasProperty(' expectedVersion' ) ? project. property(' expectedVersion' ) : ' UNDEFINED'
14
13
15
14
// Core version for tests
16
15
// Be careful to diverge here; easy to forget and hard to find JNI problems
17
- // ob_native_version = "2.4.0-dev-SNAPSHOT"
18
- ob_native_version = " 2.4.0-RC"
16
+ ob_native_version = " 2.4.0-dev-SNAPSHOT"
19
17
20
18
def osName = System . getProperty(" os.name" ). toLowerCase()
21
19
objectboxPlatform = osName. contains(' linux' ) ? ' linux'
You can’t perform that action at this time.
0 commit comments