From c058af2077ddfd4010b1c4000d40dd1739b3d8d2 Mon Sep 17 00:00:00 2001 From: Eli Hart Date: Wed, 10 May 2017 11:49:35 -0700 Subject: [PATCH] Prepare for 2.1.0 release (#213) --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 152a70e629..fa0d8604b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 2.1.0 (May 9, 2017) + +* **New**: Support for Android Data Binding! Epoxy will now generate an EpoxyModel directly from a Data Binding xml layout, and handle all data binding details automatically. Thanks to @geralt-encore for helping with this! See more details in [the wiki](https://github.com/airbnb/epoxy/wiki/Data-Binding-Support). +* **New**: Support for Litho. Epoxy will now generate an EpoxyModel for Litho Layout Specs. See more details in [the wiki](https://github.com/airbnb/epoxy/wiki/Litho-Support). +* **New**: Support for implicitly adding AutoModels to an EpoxyController, this let's you drop the extra `.addTo(this)` line. More details and instructions [here](https://github.com/airbnb/epoxy/wiki/Epoxy-Controller#implicit-adding) + # 2.0.0 (March 25, 2017) * **New**: The `EpoxyController` class helps you manage even models better. This should be used instead of the original `EpoxyAdapter` in most places. Read more about `EpoxyController` in [the wiki](https://github.com/airbnb/epoxy/wiki/Epoxy-Controller). diff --git a/README.md b/README.md index ee2b029140..d39ddc2da3 100755 --- a/README.md +++ b/README.md @@ -15,15 +15,15 @@ Gradle is the only supported build configuration, so just add the dependency to ```groovy dependencies { - compile 'com.airbnb.android:epoxy:2.0.0' + compile 'com.airbnb.android:epoxy:2.1.0' } ``` Optionally, if you want to [take advantage of generated models](https://github.com/airbnb/epoxy/wiki/Epoxy-Models#annotations) you must also provide the annotation processor as a dependency. ```groovy dependencies { - compile 'com.airbnb.android:epoxy:2.0.0' - annotationProcessor 'com.airbnb.android:epoxy-processor:2.0.0' + compile 'com.airbnb.android:epoxy:2.1.0' + annotationProcessor 'com.airbnb.android:epoxy-processor:2.1.0' } ```