diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..59cf5c4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +Change Log +========== +All notable changes to this project will be documented in this file. + +[Version 1.0.0 _(2018-04-11)_](https://github.com/xmartlabs/android-snapshot-publisher/releases/tag/v1.0.0) +--- + +### New Features +- Add the ability to include the last commit in the release notes history. (#16) +- Create preparation tasks. +It enables you to create snapshot builds and test them locally without the necessity of deploy it. (#17) +- Include git branch name in the app custom version name options (#18) + +### Fixes +- Truncate Fabric Beta's release notes if its length is greater than `16384` characters. + +### Breaking changes +- `distributionEmails` and `distributionGroupAliases` in Fabric's Beta configuration block are changed to strings instead of a list of strings. +These values are built by joining all `emails` or `aliases` with commas. +This change was made in order to make the setup process easier. (#19) + +[Version 0.0.1 _(2018-03-08)_](https://github.com/xmartlabs/android-snapshot-publisher/releases/tag/v0.0.1) +--- + +This is the initial version. diff --git a/README.md b/README.md index 4f8d32d..f734b30 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ buildscript { maven { url 'https://maven.fabric.io/public' } } dependencies { - classpath "com.xmartlabs:snapshot-publisher:0.0.1" + classpath "com.xmartlabs:snapshot-publisher:1.0.0" } } ``` diff --git a/build.gradle b/build.gradle index 7f49fab..fd004b7 100644 --- a/build.gradle +++ b/build.gradle @@ -56,7 +56,7 @@ compileTestKotlin { } group 'com.xmartlabs' -version '0.0.1' +version '1.0.0' gradlePlugin { plugins { @@ -73,7 +73,7 @@ gradlePlugin { pluginBundle { website = 'https://github.com/xmartlabs/android-snapshot-publisher' vcsUrl = 'https://github.com/xmartlabs/android-snapshot-publisher.git' - tags = ['android', 'google-play', 'beta-fabric'] + tags = ['android', 'google-play', 'beta-fabric', 'snapshot-build', 'publisher'] } detekt {