diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ec963f..deeefe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ Change Log ========= +## Version 1.0.15 +* Added code for preventing java.lang.IllegalArgumentException: bug x + width must be <= bitmap.width()(#40) + ## Version 1.0.14 * remove "application android:label" from Manifest of library(#39) diff --git a/README.md b/README.md index d793305..b3bf180 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ repositories { jcenter() } dependencies { - compile 'com.isseiaoki:simplecropview:1.0.14' + compile 'com.isseiaoki:simplecropview:1.0.15' } ``` diff --git a/simplecropview/build.gradle b/simplecropview/build.gradle index 98c446a..69680aa 100644 --- a/simplecropview/build.gradle +++ b/simplecropview/build.gradle @@ -7,8 +7,8 @@ android { defaultConfig { minSdkVersion 9 targetSdkVersion 22 - versionCode 15 - versionName "1.0.14" + versionCode 16 + versionName "1.0.15" } buildTypes { release { @@ -22,7 +22,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' group = 'com.isseiaoki' -version = '1.0.14' +version = '1.0.15' def siteUrl = 'https://github.com/IsseiAoki/SimpleCropView' def gitUrl = 'https://github.com/IsseiAoki/SimpleCropView.git' Properties properties = new Properties()