File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
objectbox-java/src/main/java/io/objectbox Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,13 @@ version = ob_version
4
4
buildscript {
5
5
ext {
6
6
// Typically, only edit those two:
7
- def objectboxVersionNumber = ' 2.5.2 ' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
7
+ def objectboxVersionNumber = ' 3.0.0-alpha2 ' // without "-SNAPSHOT", e.g. '2.5.0' or '2.4.0-RC'
8
8
def objectboxVersionRelease = false // set to true for releasing to ignore versionPostFix to avoid e.g. "-dev" versions
9
9
10
10
// version post fix: '-<value>' or '' if not defined; e.g. used by CI to pass in branch name
11
- def versionPostFixValue = project. findProperty(' versionPostFix' )
11
+ // def versionPostFixValue = project.findProperty('versionPostFix')
12
+ // PREVIEW RELEASE, do not use version post fix.
13
+ def versionPostFixValue = ' '
12
14
def versionPostFix = versionPostFixValue ? " -$versionPostFixValue " : ' '
13
15
ob_version = objectboxVersionNumber + (objectboxVersionRelease? " " : " $versionPostFix -SNAPSHOT" )
14
16
println " ObjectBox Java version $ob_version "
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ public class BoxStore implements Closeable {
66
66
/** Change so ReLinker will update native library when using workaround loading. */
67
67
public static final String JNI_VERSION = "2.5.1" ;
68
68
69
- private static final String VERSION = "2.5.2- 2020-02 -10" ;
69
+ private static final String VERSION = "3.0.0-alpha2- 2020-03 -10" ;
70
70
private static BoxStore defaultStore ;
71
71
72
72
/** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */
You can’t perform that action at this time.
0 commit comments