Skip to content

Commit 056cf5d

Browse files
authored
prepare for release 2.17.0 (#529)
1 parent 82d4161 commit 056cf5d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.17.0 (Sep 6, 2018)
2+
- **New** Add support for setting the Padding via resource or directly in dp (https://github.com/airbnb/epoxy/pull/528 Thanks to pwillmann!)
3+
- **Fixed** Strip kotlin metadata annotation from generated classes (https://github.com/airbnb/epoxy/pull/523)
4+
- **Fixed** Reflect the annotations declared in constructor params (https://github.com/airbnb/epoxy/pull/519 Thanks to Shaishav Gandhi!)
5+
16
# 2.16.4 (Aug 29, 2018)
27
- **New** `EpoxyAsyncUtil` and `AsyncEpoxyController` make it easier to use Epoxy's async behavior out of the box
38
- **New** Epoxy's background diffing posts messages back to the main thread asynchronously so they are not blocked by waiting for vsync

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=2.16.4
1+
VERSION_NAME=2.17.0
22
GROUP=com.airbnb.android
33
POM_DESCRIPTION=Epoxy is a system for composing complex screens with a ReyclerView in Android.
44
POM_URL=https://github.com/airbnb/epoxy

kotlinsample/src/test/java/com/airbnb/epoxy/kotlinsample/AnnotationModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import com.airbnb.epoxy.EpoxyHolder
99
import com.airbnb.epoxy.EpoxyModelClass
1010
import com.airbnb.epoxy.EpoxyModelWithHolder
1111

12-
@EpoxyModelClass(layout = R.layout.activity_kotlin_sample)
12+
@EpoxyModelClass(layout = R.layout.activity)
1313
abstract class AnnotationModel(
1414
@StringRes val resId: Int,
1515
@FloatRange(from = 0.0, to = 1.0) val range: Float

0 commit comments

Comments
 (0)