diff --git a/README.md b/README.md index c4da3875..7222e456 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ In your `build.gradle`: ```groovy dependencies { - compile 'me.drakeet.multitype:multitype:2.4.1' + compile 'me.drakeet.multitype:multitype:2.4.2' } ``` -**NOTE**: If you are updating from **v2.4.0** to v2.4.1, +**NOTE**: If you are updating from **v2.4.0** to v2.4.2, note that the `setItems(items)` method has removed the `notifyDataSetChanged()` and you need to call it by yourself. diff --git a/library/build.gradle b/library/build.gradle index f183140f..2cb63be8 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -25,8 +25,8 @@ android { defaultConfig { minSdkVersion 9 targetSdkVersion 25 - versionCode 61 - versionName "2.4.1" + versionCode 62 + versionName "2.4.2" } buildTypes { release { @@ -38,6 +38,6 @@ android { dependencies { testCompile 'junit:junit:4.12' - compile 'com.android.support:support-annotations:25.1.0' - compile 'com.android.support:recyclerview-v7:25.1.0' + compile 'com.android.support:support-annotations:25.2.0' + compile 'com.android.support:recyclerview-v7:25.2.0' } diff --git a/library/gradle.properties b/library/gradle.properties index 93ff873a..e3045c5c 100644 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -37,8 +37,8 @@ POM_NAME=MultiType POM_ARTIFACT_ID=multitype POM_PACKAGING=aar -VERSION_NAME=2.4.1 -VERSION_CODE=61 +VERSION_NAME=2.4.2 +VERSION_CODE=62 GROUP=me.drakeet.multitype POM_DESCRIPTION=An Android library to retrofit multiple item view types diff --git a/sample/build.gradle b/sample/build.gradle index 958a2ab7..ffe74deb 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -23,8 +23,8 @@ android { applicationId "me.drakeet.multitype.sample" minSdkVersion 14 targetSdkVersion 25 - versionCode 61 - versionName "2.4.1" + versionCode 62 + versionName "2.4.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { @@ -41,8 +41,8 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.1.0' - compile 'com.android.support:recyclerview-v7:25.1.0' + compile 'com.android.support:appcompat-v7:25.2.0' + compile 'com.android.support:recyclerview-v7:25.2.0' testCompile 'junit:junit:4.12' compile 'com.google.code.gson:gson:2.7' }