From 827f2d99aac370a8949f433062bce7b95c8b015f Mon Sep 17 00:00:00 2001 From: sangcomz Date: Thu, 31 Oct 2019 23:57:26 +0900 Subject: [PATCH] chore (FishBun): prepare release --- README.md | 14 +++++++++----- gradle/release.gradle | 8 ++++++-- settings.gradle | 2 +- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 09ba352b..ab792d35 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,14 @@ _FishBun_ is a highly customizable image picker for Android. -## What's New in _FishBun_ 0.11.1? +## What's New in _FishBun_ 0.11.2? :tada: -- Missing space in title[#163](https://github.com/sangcomz/FishBun/issues/163) -- [CRASH] When used in flutter, Fileprovider paths can be overwritten.[#162](https://github.com/sangcomz/FishBun/issues/162) +- added some guide for reporting issue[#176](https://github.com/sangcomz/FishBun/pull/176) +- Java to Kotlin[#174](https://github.com/sangcomz/FishBun/pull/174), [#175](https://github.com/sangcomz/FishBun/pull/175), [#179](https://github.com/sangcomz/FishBun/pull/179), [#185](https://github.com/sangcomz/FishBun/pull/185), [#187](https://github.com/sangcomz/FishBun/pull/187) +- fix README.md for App used[#180](https://github.com/sangcomz/FishBun/pull/180) +- Runtime permission for camera [#116](https://github.com/sangcomz/FishBun/issue/116) +- Implement Instrument test code [#186](https://github.com/sangcomz/FishBun/pull/186) +- Fix bug, when Image displays in wrong orientation [#184](https://github.com/sangcomz/FishBun/pull/184) ## Customizable Styles @@ -121,9 +125,9 @@ Setting up _FishBun_ requires to add this Gradle configuration: compile 'com.github.bumptech.glide:glide:4.9.0' // Android plugin 3.0.0 or higher. - implementation 'com.sangcomz:FishBun:0.11.0' + implementation 'com.sangcomz:FishBun:0.11.2' - implementation 'com.squareup.picasso:picasso:2.71828' + implementation 'com.squareup.picasso:picasso:2.5.2' or implementation 'com.github.bumptech.glide:glide:4.9.0' diff --git a/gradle/release.gradle b/gradle/release.gradle index e3148dc4..e7847804 100644 --- a/gradle/release.gradle +++ b/gradle/release.gradle @@ -99,8 +99,12 @@ if (project.rootProject.file('local.properties').isFile()) { tagName = version targetCommitish = 'master' body = """## Release Note -* Missing space in title[#163](https://github.com/sangcomz/FishBun/issues/163) -* [CRASH] When used in flutter, Fileprovider paths can be overwritten.[#162](https://github.com/sangcomz/FishBun/issues/162) +* added some guide for reporting issue[#176](https://github.com/sangcomz/FishBun/pull/176) +* Java to Kotlin[#174](https://github.com/sangcomz/FishBun/pull/174), [#175](https://github.com/sangcomz/FishBun/pull/175), [#179](https://github.com/sangcomz/FishBun/pull/179), [#185](https://github.com/sangcomz/FishBun/pull/185), [#187](https://github.com/sangcomz/FishBun/pull/187) +* fix README.md for App used[#180](https://github.com/sangcomz/FishBun/pull/180) +* Runtime permission for camera [#116](https://github.com/sangcomz/FishBun/issue/116) +* Implement Instrument test code [#186](https://github.com/sangcomz/FishBun/pull/186) +* Fix bug, when Image displays in wrong orientation [#184](https://github.com/sangcomz/FishBun/pull/184) """ name = version } diff --git a/settings.gradle b/settings.gradle index cfd83ccf..fc0b1226 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,7 +1,7 @@ include ':FishBunDemo', ':FishBun' gradle.ext.versionCode = 27 -gradle.ext.versionName = '0.11.1' +gradle.ext.versionName = '0.11.2' gradle.ext.set('minSdk', 15) gradle.ext.set('targetSdk', 28)