Skip to content

Commit

Permalink
Prepare for 1.4.0 release (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart authored Oct 16, 2016
1 parent 31b1920 commit be31939
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.4.0 (10/13/2016)

* Optimizations to the diffing algorithm
* Setters on generated classes are not created if an @EpoxyAttribute field is marked as `final`
* Adds @EpoxyModelClass annotation to force a model to have a generated class, even if it doesn't have any @EpoxyAttribute fields
* Fix to not generate methods for package private @EpoxyAttribute fields that are in a different package from the generated class
* Have generated classes duplicate any super methods that have the model as the return type to help with chaining

# 1.3.0 (09/15/2016)

* Add support for using the view holder pattern with models. See the readme for more information.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gradle is the only supported build configuration, so just add the dependency to

```groovy
dependencies {
compile 'com.airbnb.android:epoxy:1.3.0'
compile 'com.airbnb.android:epoxy:1.4.0'
}
```

Expand All @@ -44,8 +44,8 @@ buildscript {
apply plugin: 'android-apt'
dependencies {
compile 'com.airbnb.android:epoxy:1.3.0'
apt 'com.airbnb.android:epoxy-processor:1.3.0'
compile 'com.airbnb.android:epoxy:1.4.0'
apt 'com.airbnb.android:epoxy-processor:1.4.0'
}
```

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=1.3.0
VERSION_NAME=1.4.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 be31939

Please sign in to comment.