Skip to content

Commit

Permalink
Prepare for 1.5.0 release (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart authored Nov 23, 2016
1 parent e0d0efa commit 770a82e
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.5.0 (11/21/2016)

* Fixes models being used in separate modules
* Generates a `reset()` method on each model to reset annotated fields to their defaults.
* Changes `@EpoxyAttribute(hash = false)` to still differentiate between null and non null values in the hashcode implementation
* Adds a `notifyModelChanged` method to EpoxyAdapter that allows a payload to be specified
* Generates a `toString()` method on all generated model classes that includes the values of all annotated fields.

# 1.4.0 (10/13/2016)

* Optimizations to the diffing algorithm
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.4.0'
compile 'com.airbnb.android:epoxy:1.5.0'
}
```

Expand All @@ -44,8 +44,8 @@ buildscript {
apply plugin: 'android-apt'
dependencies {
compile 'com.airbnb.android:epoxy:1.4.0'
apt 'com.airbnb.android:epoxy-processor:1.4.0'
compile 'com.airbnb.android:epoxy:1.5.0'
apt 'com.airbnb.android:epoxy-processor:1.5.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.4.0
VERSION_NAME=1.5.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 770a82e

Please sign in to comment.