From c40825297fc1008c72bfebca09af9aabe15c2832 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 24 May 2018 05:13:49 +1000 Subject: + Added template file required by gradle to generate Changelogs. --- changelog.mustache | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 changelog.mustache diff --git a/changelog.mustache b/changelog.mustache new file mode 100644 index 0000000000..64fc20a48b --- /dev/null +++ b/changelog.mustache @@ -0,0 +1,32 @@ +# Git Changelog Gradle plugin + +Changelog of Git Changelog Gradle plugin. + +{{#tags}} +## {{name}} + {{#issues}} + {{#hasIssue}} + {{#hasLink}} +### {{name}} [{{issue}}]({{link}}) {{title}} + {{/hasLink}} + {{^hasLink}} +### {{name}} {{issue}} {{title}} + {{/hasLink}} + {{/hasIssue}} + {{^hasIssue}} +### {{name}} + {{/hasIssue}} + + {{#commits}} +**{{{messageTitle}}}** + +{{#messageBodyItems}} + * {{.}} +{{/messageBodyItems}} + +[{{hash}}](https://github.com/tomasbjerre/git-changelog-gradle-plugin/commit/{{hash}}) {{authorName}} *{{commitTime}}* + + {{/commits}} + + {{/issues}} +{{/tags}} \ No newline at end of file -- cgit