Skip to content

Commit a5076b2

Browse files
committed
prepare 2.4.0 RC
1 parent b5a023b commit a5076b2

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
ObjectBox is a superfast object-oriented database with strong relation support.
55
ObjectBox is embedded into your Android, Linux, macOS, or Windows app.
66

7-
**Latest version: [2.3.4 (2019/03/19)](https://objectbox.io/changelog)**
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)**
810

911
Demo code using ObjectBox:
1012

build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ version = ob_version
33

44
buildscript {
55
ext {
6-
// version post fix: '-<value>' or '' if not defined
6+
// 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"
9+
//ob_version = "2.4.0$versionPostFix-SNAPSHOT"
10+
ob_version = "2.4.0-RC" // Release; don't use versionPostFix
1011
println "ObjectBox Java version $ob_version"
1112

1213
ob_expected_version = project.hasProperty('expectedVersion') ? project.property('expectedVersion') : 'UNDEFINED'
1314

1415
// Core version for tests
1516
// 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-RC"
1719

1820
def osName = System.getProperty("os.name").toLowerCase()
1921
objectboxPlatform = osName.contains('linux') ? 'linux'

objectbox-java/src/main/java/io/objectbox/BoxStore.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class BoxStore implements Closeable {
6666
/** Change so ReLinker will update native library when using workaround loading. */
6767
public static final String JNI_VERSION = "2.4.0";
6868

69-
private static final String VERSION = "2.4.0-2019-06-25";
69+
private static final String VERSION = "2.4.0-2019-10-03";
7070
private static BoxStore defaultStore;
7171

7272
/** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */

0 commit comments

Comments
 (0)