Skip to content

Commit 517e46c

Browse files
Version 2.4.0-dev-SNAPSHOT, tests use native 2.4.0-dev-SNAPSHOT.
1 parent 915513b commit 517e46c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)