Skip to content

Commit

Permalink
Updated the support libs to v25.2.0 and tagged to v2.4.2 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
drakeet authored Mar 1, 2017
1 parent 3dbd8ad commit cf4c5dd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 25
versionCode 61
versionName "2.4.1"
versionCode 62
versionName "2.4.2"
}
buildTypes {
release {
Expand All @@ -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'
}
4 changes: 2 additions & 2 deletions library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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'
}

0 comments on commit cf4c5dd

Please sign in to comment.