Skip to content

Commit

Permalink
Prepare for release v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
h6ah4i committed Jul 3, 2016
1 parent 4905285 commit abaf1da
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Target platforms
Latest version
---

- Version 0.9.1 (May 17, 2016) ([RELEASE NOTES](./RELEASE-NOTES.md))
- Version 0.9.2 (July 3, 2016) ([RELEASE NOTES](./RELEASE-NOTES.md))


Getting started
Expand All @@ -42,7 +42,7 @@ This library is published on jCenter. Just add these lines to `build.gradle`.

```groovy
dependencies {
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.9.1@aar'){
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.9.2@aar'){
transitive=true
}
}
Expand Down
18 changes: 17 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
## 0.9.2
[New features]
- Added `void RecyclerViewDragDropManager.setItemMoveMode(@ItemMoveMode int mode)` (issue #253, #269)
- Added `void RecyclerViewSwipeManager.setSwipeThresholdDistance(int distanceInPixels)` (issue #266)
- Added `notifyGroupItemMoved()` and `notifyChildItemMoved()` methods to `RecyclerViewExpandableItemManager` (issue #270)
- Added `RecyclerViewDragDropManager.setInitiateOnTouch(boolean initiateOnTouch)` (issue #273)

[Improvements]
- Better handling of `notifyItem*` method calls during swiping (issue #274)
- Improved span size change handling during dragging (issue #278)

[Bug fixes]
- IllegalStateException (issue #247)
- Item loses Remove Animation properties when removed + undo (issue #262)


## 0.9.1
[Bug fixes]
- Fix broken drag and drop behavior on API level 10


## 0.9.0
[New features]
- Introduce `DraggableItemAdapter.onCheckCanDrop()` callback (issue #233)
- Introduced `DraggableItemAdapter.onCheckCanDrop()` callback (issue #233)

[Improvements]
- Improved Drag & Drop behavior for StaggeredGridLayout (issue #219)
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
applicationId "com.h6ah4i.android.example.advrecyclerview"
minSdkVersion 9
targetSdkVersion 23
versionCode 19
versionName "0.9.1"
versionCode 20
versionName "0.9.2"
vectorDrawables.useSupportLibrary = true
}

Expand Down
4 changes: 2 additions & 2 deletions library/library-data.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# suppress inspection "UnusedProperty" for whole file
# common
VERSION_NAME=0.9.1
VERSION_CODE=19
VERSION_NAME=0.9.2
VERSION_CODE=20

# for maven-publish
POM_GROUP_ID=com.h6ah4i.android.widget.advrecyclerview
Expand Down

0 comments on commit abaf1da

Please sign in to comment.