From 65a79b8bf36c2406277fa82e95aa29e297f8d687 Mon Sep 17 00:00:00 2001 From: Distopico Vegan Date: Thu, 8 Nov 2018 00:57:43 -0500 Subject: [PATCH] Published v1.0.0 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ app/build.gradle | 7 ++++++- build.gradle | 1 + 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..a27babfa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# v1.0.0 (2018/11/08) + + +## Bug Fixes + +* hide button after show images (#2790b76d) +* check on empty search fallback (#6e9b5992) +* check if has storage framework (#1a07f5fa) + +## Features + +* add riseup provider (#4126bae3) +* add text when no have accounts yet (#2d15cd32) +* remove Eula annoying initial view (#a794fc0e) +* add lint configuration (#16b03af8) +* improve message interface (#de7dc808) +* change 'enable' advanced option to 'enable sync' to be clear (#fc5949c7) +* set account name on compose (#e4a97052) +* change to switch on advance options (#236d39b1) diff --git a/app/build.gradle b/app/build.gradle index c722b0f6..188c147d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'com.android.application' +apply plugin: 'changelog' android { compileSdkVersion 28 @@ -7,7 +8,7 @@ android { minSdkVersion 23 targetSdkVersion 28 versionCode 100 - versionName "1.0" + versionName "1.0.0" archivesBaseName = "SimpleEmail-v$versionName" proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' @@ -49,6 +50,10 @@ android { } } +changelog { + versionNum "v$android.defaultConfig.versionName" +} + repositories { google() jcenter() diff --git a/build.gradle b/build.gradle index 7e21a6d4..9e6b2a37 100644 --- a/build.gradle +++ b/build.gradle @@ -5,6 +5,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:3.2.1' + classpath 'com.github.marcpoppleton:git-changelog:0.1.3' } }