Skip to content

Commit 9215649

Browse files
committed
V1.0.1
1 parent c5fff84 commit 9215649

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# ObjectBox Java (Kotlin, Android)
22
ObjectBox is a superfast object-oriented database with strong relation support.
33

4-
**Latest version: [1.0.0 (2017/09/04)](http://objectbox.io/changelog)**
4+
**Latest version: [1.0.1 (2017/09/10)](http://objectbox.io/changelog)**
55

66
Demo code using ObjectBox:
77

88
Playlist playlist = new Playlist("My Favorties");
9-
playlist.songs.add(new Song("Lalala");
10-
playlist.songs.add(new Song("Lololo");
9+
playlist.songs.add(new Song("Lalala"));
10+
playlist.songs.add(new Song("Lololo"));
1111
box.put(playlist);
1212

1313
Gradle setup
1414
------------
1515
Add this to your root build.gradle (project level):
1616

1717
buildscript {
18-
ext.objectboxVersion = '1.0.0'
18+
ext.objectboxVersion = '1.0.1'
1919
repositories {
2020
maven { url "http://objectbox.net/beta-repo/" }
2121
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Just too many sub projects, so each can reference rootProject.version
2-
version = '1.0.1-SNAPSHOT'
2+
version = '1.0.1'
33

44
buildscript {
55
ext {

0 commit comments

Comments
 (0)