Skip to content

Commit 4c76352

Browse files
committed
V2.2.0
1 parent 1323c0c commit 4c76352

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

DaoCore/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
group = 'org.greenrobot'
66
archivesBaseName = 'greendao'
7-
version = '2.2.0-SNAPSHOT'
7+
version = '2.2.0'
88
sourceCompatibility = 1.6
99

1010
def isSnapshot = version.endsWith('-SNAPSHOT')

DaoExample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ android {
3636
}
3737

3838
dependencies {
39-
compile('de.greenrobot:greendao:2.0.0')
39+
compile project(':DaoCore')
4040
}

DaoGenerator/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
group = 'org.greenrobot'
66
archivesBaseName = 'greendao-generator'
7-
version = '2.2.0-SNAPSHOT'
7+
version = '2.2.0'
88
sourceCompatibility = 1.7
99

1010
def isSnapshot = version.endsWith('-SNAPSHOT')

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ greenDAO is available on Maven Central. Please ensure that you are using the lat
2525

2626
Gradle dependency for your Android app:
2727
```
28-
compile 'de.greenrobot:greendao:2.1.0'
28+
compile 'de.greenrobot:greendao:2.2.0'
2929
```
3030

3131
Gradle dependency for your Java generator project:
3232
```
33-
compile 'de.greenrobot:greendao-generator:2.1.0'
33+
compile 'de.greenrobot:greendao-generator:2.2.0'
3434
```
35+
*Note:* to use encrypted databases using SQLCipher, you need to reference different artifacts (postfix '-encryption'). For all details, please refer to the documentation on []database encryption](http://greenrobot.org/greendao/documentation/database-encryption/).
3536

3637
Homepage, Documentation, Links
3738
------------------------------

0 commit comments

Comments
 (0)