diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d21d1b..cf953aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,4 +12,7 @@ - Fix ShadowLayout layout parameters and background - Add findShadowedView methods - Small build fixes -- Remove some debug logs \ No newline at end of file +- Remove some debug logs + +## Version 1.0.2 *(2018-10-17)* +- Change implementation to compileOnly in dependencies \ No newline at end of file diff --git a/README.md b/README.md index bdd421b..faa86ca 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Add it in your root build.gradle at the end of repositories: ### Step 2. Add the dependency ```groovy dependencies { - implementation 'com.github.maciekczwa:shadowlib:1.0.1' + implementation 'com.github.maciekczwa:shadowlib:1.0.2' } ``` diff --git a/shadowlib/build.gradle b/shadowlib/build.gradle index 9903e52..b4db926 100644 --- a/shadowlib/build.gradle +++ b/shadowlib/build.gradle @@ -7,8 +7,8 @@ android { defaultConfig { minSdkVersion 19 targetSdkVersion 28 - versionCode 2 - versionName "1.0.1" + versionCode 3 + versionName "1.0.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"