-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Add changelog plugin to generate CHANGELOG.md
- Loading branch information
1 parent
53fc5be
commit c587a88
Showing
3 changed files
with
122 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
## [Version 1.1.0-SNAPSHOT] | ||
|
||
<ul> | ||
<li> | ||
<b>build</b> : use start version 1.0.0 | ||
</li> | ||
<li> | ||
<b>build</b> : revert back the first version | ||
</li> | ||
<li> | ||
<b>build</b> : don't execute release workflow | ||
</li> | ||
<li> | ||
<b>build</b> : don't execute release workflow | ||
</li> | ||
<li> | ||
<b>build</b> : don't execute release workflow | ||
</li> | ||
<li> | ||
<b>build</b> : add release tag only | ||
</li> | ||
<li> | ||
<b>build</b> : revert back the version | ||
</li> | ||
<li> | ||
<b>build</b> : define ci/cd for main branch | ||
</li> | ||
<li> | ||
<b>build</b> : define ci/cd for main branch | ||
</li> | ||
<li> | ||
<b>build</b> : update pom version | ||
</li> | ||
<li> | ||
<b>feat</b> : Add maven release plugin | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>build</b> : Add release job to circleCI | ||
</li> | ||
<li> | ||
<b>feat</b> : Update README description | ||
</li> | ||
<li> | ||
<b>feat</b> : prepare pom for releasing plugin to sonatype repository | ||
</li> | ||
<li> | ||
<b>feat</b> : Add specific model class to be passed to the template engine | ||
</li> | ||
<li> | ||
<b>doc</b> : Update badges | ||
</li> | ||
<li> | ||
<b>feat</b> : Load template from external resource | ||
</li> | ||
</ul> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<#ftl output_format="plainText" > | ||
## [Version ${projectVersion}] | ||
|
||
<#list commits> | ||
<ul> | ||
<#items as commit> | ||
<li> | ||
<b>${commit.type}</b> : ${commit.description} | ||
</li> | ||
</#items> | ||
</ul> | ||
</#list> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters