Skip to content

Commit

Permalink
Updated to 3.0.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
drakeet committed Apr 17, 2017
1 parent 1c707e6 commit dc5e095
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 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 301
versionName "3.0.0-beta1"
versionCode 302
versionName "3.0.0-beta2"
}
buildTypes {
release {
Expand Down
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=3.0.0-beta1
VERSION_CODE=301
VERSION_NAME=3.0.0-beta2
VERSION_CODE=302
GROUP=me.drakeet.multitype

POM_DESCRIPTION=An Android library to retrofit multiple item view types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ protected abstract VH onCreateViewHolder(
* update the contents of the {@link ViewHolder#itemView} to reflect the given item.
* <p>
* If you need the position of an item later on (e.g. in a click listener), use
* {@link ViewHolder#getAdapterPosition()} which will have the updated adapter position.
* {@code ViewHolder#getAdapterPosition()} which will have the updated adapter position.
*
* Override {@link #onBindViewHolder(ViewHolder, Object, List)} instead if your ItemViewBinder
* Override {@code onBindViewHolder(ViewHolder, Object, List)} instead if your ItemViewBinder
* can handle efficient partial bind.
*
* @param holder The ViewHolder which should be updated to represent the contents of the
Expand Down Expand Up @@ -69,7 +69,7 @@ protected abstract VH onCreateViewHolder(
* received by onBindViewHolder(). For example when the view is not attached to the screen,
* the payload in notifyItemChange() will be simply dropped.
*
* This implementation calls the {@link #onBindViewHolder(ViewHolder, Object)} by default.
* This implementation calls the {@code onBindViewHolder(ViewHolder, Object)} by default.
*
* @param holder The ViewHolder which should be updated to represent the contents of the
* given item in the items data set.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public final ViewHolder onCreateViewHolder(ViewGroup parent, int indexViewType)
* <p>
* If you need to call the binding, use {@link RecyclerView.Adapter#onBindViewHolder(ViewHolder,
* int, List)} instead.
* <p/>
* </p>
*
* @param holder The ViewHolder which should be updated to represent the contents of the
* item at the given position in the data set.
Expand Down
4 changes: 2 additions & 2 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 301
versionName "3.0.0-beta1"
versionCode 302
versionName "3.0.0-beta2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down

0 comments on commit dc5e095

Please sign in to comment.