Skip to content

Commit

Permalink
Prepare for release 1.3.0 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart authored Sep 17, 2016
1 parent 98e6156 commit cb66904
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.3.0 (09/15/2016)

* Add support for using the view holder pattern with models. See the readme for more information.
* Throw an exception if `EpoxyAdapter#notifyDataSetChanged()` is called when diffing is enabled. It doesn't make sense to allow this alongside diffing, and calling this is most likely to be an accidental mixup with `notifyModelsChanged()`.
* Some performance improvements with the diffing algorithm.

# 1.2.0 (09/07/2016)

* Change signature of `EpoxyAdapter#onModelBound` to include the model position
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.2.0'
compile 'com.airbnb.android:epoxy:1.3.0'
}
```

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

Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
VERSION_CODE=1
VERSION_NAME=1.2.0
VERSION_NAME=1.3.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 cb66904

Please sign in to comment.