Skip to content

Commit

Permalink
Prepare for 2.16.0 release (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart authored Aug 8, 2018
1 parent 5c51480 commit 460fc5d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.16.0 (Aug 7, 2018)
- **New** EpoxyController now supports asynchronous model building and diffing by allowing you to provide a custom Handler to run these tasks. See the [wiki](https://github.com/airbnb/epoxy/wiki/Epoxy-Controller#asynchronous-support) for more details.

- **New** The `EpoxyController#addModelBuildListener` method was added to support listening for when model changes are dispatched to the recyclerview.

# 2.15.0 (July 29, 2018)
- **New** Added kotlin sample code for building models. Updated wiki with info (https://github.com/airbnb/epoxy/wiki/Kotlin-Model-Examples)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Gradle is the only supported build configuration, so just add the dependency to

```groovy
dependencies {
compile 'com.airbnb.android:epoxy:2.15.0'
compile 'com.airbnb.android:epoxy:2.16.0'
// Add the annotation processor if you are using Epoxy's annotations (recommended)
annotationProcessor 'com.airbnb.android:epoxy-processor:2.15.0'
annotationProcessor 'com.airbnb.android:epoxy-processor:2.16.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ public void requestModelBuild() {
* and changes have been dispatched to the RecyclerView.
* <p>
* Since buildModels can be called once for many calls to {@link #requestModelBuild()}, this is
* called just for each buildModels execution, not for every request.
* called just once for each buildModels execution, not for every request.
* <p>
* Used this to react to changes in your models that need to happen after the RecyclerView has
* Use this to react to changes in your models that need to happen after the RecyclerView has
* been notified, such as scrolling.
*/
public void addModelBuildListener(OnModelBuildFinishedListener listener) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=2.15.0
VERSION_NAME=2.16.0
GROUP=com.airbnb.android
POM_DESCRIPTION=Epoxy is a system for composing complex screens with a ReyclerView in Android.
POM_URL=https://github.com/airbnb/epoxy
Expand Down

0 comments on commit 460fc5d

Please sign in to comment.