forked from antonbabenko/modules.tf-lambda
-
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.
chore: Added CHANGELOG (antonbabenko#24)
- Loading branch information
1 parent
a1856e0
commit a6b61b6
Showing
4 changed files
with
158 additions
and
0 deletions.
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,63 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
{{ if .Versions -}} | ||
<a name="unreleased"></a> | ||
## [Unreleased] | ||
{{ if .Unreleased.CommitGroups -}} | ||
{{ range .Unreleased.CommitGroups -}} | ||
{{ .Title }}: | ||
{{ range .Commits -}} | ||
{{- if .Subject -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{ end -}} | ||
{{ end }} | ||
{{ end -}} | ||
{{ else }} | ||
{{ range .Unreleased.Commits -}} | ||
{{- if .Subject -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{ end -}} | ||
{{ end }} | ||
{{ end -}} | ||
{{ end -}} | ||
|
||
{{ range .Versions }} | ||
<a name="{{ .Tag.Name }}"></a> | ||
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }} | ||
{{ if .CommitGroups -}} | ||
{{ range .CommitGroups -}} | ||
{{ .Title }}: | ||
{{ range .Commits -}} | ||
{{- if .Subject -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{ end -}} | ||
{{ end }} | ||
{{ end -}} | ||
{{ else }} | ||
{{ range .Commits -}} | ||
{{- if .Subject -}} | ||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }} | ||
{{ end -}} | ||
{{ end }} | ||
{{ end -}} | ||
|
||
{{- if .NoteGroups -}} | ||
{{ range .NoteGroups -}} | ||
{{ .Title }}: | ||
{{ range .Notes }} | ||
{{ .Body }} | ||
{{ end }} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} | ||
|
||
{{- if .Versions }} | ||
[Unreleased]: {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 0 }}{{ $latest.Tag.Name }}...HEAD | ||
{{ range .Versions -}} | ||
{{ if .Tag.Previous -}} | ||
[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }} | ||
{{ end -}} | ||
{{ end -}} | ||
{{ end -}} |
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,48 @@ | ||
style: github | ||
template: CHANGELOG.tpl.md | ||
info: | ||
title: CHANGELOG | ||
repository_url: https://github.com/antonbabenko/modules.tf-lambda | ||
options: | ||
|
||
commits: | ||
sort_by: Type | ||
filters: | ||
Type: | ||
- feat | ||
- fix | ||
- improvement | ||
- docs | ||
- refactor | ||
- test | ||
- ci | ||
- chore | ||
|
||
commit_groups: | ||
group_by: Type | ||
title_maps: | ||
feat: FEATURES | ||
fix: BUG FIXES | ||
improvement: ENHANCEMENTS | ||
docs: DOCS | ||
refactor: REFACTORS | ||
test: TESTS | ||
ci: CI | ||
chore: CHORES | ||
|
||
header: | ||
pattern: "^(.+)\\s*:\\s*(.+)$" | ||
pattern_maps: | ||
- Type | ||
- Subject | ||
|
||
notes: | ||
keywords: | ||
- BREAKING CHANGE | ||
- NOTES | ||
|
||
refs: | ||
actions: | ||
- Closes | ||
- Fixes | ||
- Resolves |
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,40 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
<a name="unreleased"></a> | ||
## [Unreleased] | ||
FEATURES: | ||
- Added DynamoDB Table | ||
|
||
|
||
<a name="v1.4.0"></a> | ||
## [v1.4.0] - 2019-11-05 | ||
|
||
|
||
|
||
<a name="v1.3.0"></a> | ||
## [v1.3.0] - 2019-11-04 | ||
|
||
|
||
|
||
<a name="v1.2.0"></a> | ||
## [v1.2.0] - 2019-04-15 | ||
|
||
|
||
|
||
<a name="v1.1.0"></a> | ||
## [v1.1.0] - 2018-11-25 | ||
|
||
|
||
|
||
<a name="v1.0.0"></a> | ||
## v1.0.0 - 2018-11-19 | ||
|
||
|
||
|
||
[Unreleased]: https://github.com/antonbabenko/modules.tf-lambda/compare/v1.4.0...HEAD | ||
[v1.4.0]: https://github.com/antonbabenko/modules.tf-lambda/compare/v1.3.0...v1.4.0 | ||
[v1.3.0]: https://github.com/antonbabenko/modules.tf-lambda/compare/v1.2.0...v1.3.0 | ||
[v1.2.0]: https://github.com/antonbabenko/modules.tf-lambda/compare/v1.1.0...v1.2.0 | ||
[v1.1.0]: https://github.com/antonbabenko/modules.tf-lambda/compare/v1.0.0...v1.1.0 |
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,7 @@ | ||
.PHONY: changelog release | ||
|
||
changelog: | ||
git-chglog -o CHANGELOG.md --next-tag `semtag final -s minor -o` | ||
|
||
release: | ||
semtag final -s minor |