Skip to content

Commit 22dea14

Browse files
Step 1: Version 2.4.0, update README (still native snapshots for tests).
1 parent 3a5436e commit 22dea14

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ 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'

0 commit comments

Comments
 (0)