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 {
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.0$versionPostFix-SNAPSHOT"
10- ob_version = " 2.4.0-RC" // Release; don't use versionPostFix
9+ ob_version = " 2.4.0$versionPostFix -SNAPSHOT"
1110 println " ObjectBox Java version $ob_version "
1211
1312 ob_expected_version = project. hasProperty(' expectedVersion' ) ? project. property(' expectedVersion' ) : ' UNDEFINED'
1413
1514 // Core version for tests
1615 // 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"
1917
2018 def osName = System . getProperty(" os.name" ). toLowerCase()
2119 objectboxPlatform = osName. contains(' linux' ) ? ' linux'
You can’t perform that action at this time.
0 commit comments