diff --git a/README.md b/README.md index f5b0acc..fbe84a8 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ A library to display FontAwesome Icons in any View or a MenuItem Add the following code snippet to module/build.gradle ```gradle dependencies { - compile 'com.lmntrx.livin.library.droidawesome:droid-awesome:1.1.3' + compile 'com.lmntrx.livin.library.droidawesome:droid-awesome:1.1.4' } ``` @@ -34,7 +34,7 @@ dependencies { com.lmntrx.livin.library.droidawesome droid-awesome - 1.1.3 + 1.1.4 pom ``` @@ -111,6 +111,9 @@ public boolean onCreateOptionsMenu(Menu menu) { ## ChangeLog ## +### 1.1.4 ### +* Added setIcon() method to ImageView, ImageButton, FAB + ### 1.1.3 ### * Minor Bug Fixes * Updated build version and support library diff --git a/droid-awesome/build.gradle b/droid-awesome/build.gradle index ddebb75..d442884 100644 --- a/droid-awesome/build.gradle +++ b/droid-awesome/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 15 targetSdkVersion 25 versionCode 1 - versionName "1.1.3" + versionName "1.1.4" } @@ -31,7 +31,7 @@ publish { groupId = 'com.lmntrx.livin.library.droidawesome' repoName = 'DroidAwesome' artifactId = 'droid-awesome' - publishVersion = '1.1.3' + publishVersion = '1.1.4' desc = 'A library to display FontAwesome Icons in any View or a MenuItem' website = 'https://github.com/Livin21/DroidAwesome' }