Skip to content

Commit 098fe76

Browse files
Part 1: Version 2.4.1, update README (still native snapshots for tests).
1 parent 550da3f commit 098fe76

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

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

99
Demo code using ObjectBox:
1010

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

3131
```groovy
3232
buildscript {
33-
ext.objectboxVersion = '2.4.0'
33+
ext.objectboxVersion = '2.4.1'
3434
dependencies {
3535
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
3636
}

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.1$versionPostFix-SNAPSHOT"
9+
// ob_version = "2.4.1$versionPostFix-SNAPSHOT"
10+
ob_version = "2.4.1"
1011
println "ObjectBox Java version $ob_version"
1112

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

0 commit comments

Comments
 (0)