Skip to content

Commit

Permalink
Allow PackageModelViewConfig to be set on Types (#1020)
Browse files Browse the repository at this point in the history
* Make PackageModelViewConfig also allowed on types

* bump version
  • Loading branch information
elihart authored Aug 6, 2020
1 parent 1f14d64 commit 3114762
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 4.0.0-beta6 (July 15, 2020)
- PackageModelViewConfig can now be applied to classes and interfaces in addition to package-info.java

# 4.0.0-beta5 (July 9, 2020)
Fixes:
- An occasional processor crash when the option to log timings is enabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* package. Also applies to subpackages, unless other package config values are set in those sub
* packages.
*/
@Target(ElementType.PACKAGE)
@Target({ElementType.PACKAGE, ElementType.TYPE})
@Retention(RetentionPolicy.CLASS)
public @interface PackageModelViewConfig {
/**
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=4.0.0-beta5
VERSION_NAME=4.0.0-beta6
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 3114762

Please sign in to comment.