Skip to content

Commit a60134d

Browse files
Merge branch 'refs/heads/v2.4.0' into dev
2 parents 0647980 + 7e56da6 commit a60134d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
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.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)**
7+
**Latest version: [2.4.0 (2019/10/15)](https://objectbox.io/changelog)**
108

119
Demo code using ObjectBox:
1210

@@ -32,7 +30,7 @@ Add this to your root build.gradle (project level):
3230

3331
```groovy
3432
buildscript {
35-
ext.objectboxVersion = '2.3.4'
33+
ext.objectboxVersion = '2.4.0'
3634
dependencies {
3735
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
3836
}

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ 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"
9+
// ob_version = "2.4.0$versionPostFix-SNAPSHOT"
10+
ob_version = "2.4.0"
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"
1719

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

0 commit comments

Comments
 (0)