Skip to content

Commit a4d13c4

Browse files
committed
Updated the version and fixed a notify change in the RecyclerListAdapter
1 parent 3757dea commit a4d13c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'bintray-release'
44

55
def versionMajor = 0
66
def versionMinor = 11
7-
def versionPatch = 0
7+
def versionPatch = 1
88

99
// Maven GAV
1010
def libraryGroupId = 'com.devbrackets.android'

library/src/main/java/com/devbrackets/android/recyclerext/adapter/RecyclerListAdapter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public void add(int position, T item) {
146146
}
147147

148148
if (notifyOnChange) {
149-
notifyItemChanged(position);
149+
notifyItemInserted(position);
150150
}
151151
}
152152

0 commit comments

Comments
 (0)