chore: Added changelog
This commit is contained in:
parent
c290d5eb12
commit
85827a70c5
3 changed files with 31 additions and 3 deletions
|
@ -4,8 +4,9 @@
|
|||
|
||||
{{ if .Unreleased.CommitGroups -}}
|
||||
{{ range .Unreleased.CommitGroups -}}
|
||||
### {{ .Title }}
|
||||
{{ range .Commits -}}
|
||||
- {{ .Header }}
|
||||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
|
||||
{{ end }}
|
||||
{{ end -}}
|
||||
{{ end -}}
|
||||
|
@ -15,8 +16,9 @@
|
|||
<a name="{{ .Tag.Name }}"></a>
|
||||
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }}
|
||||
{{ range .CommitGroups -}}
|
||||
### {{ .Title }}
|
||||
{{ range .Commits -}}
|
||||
- {{ .Header }}
|
||||
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
|
||||
{{ end }}
|
||||
{{ end -}}
|
||||
|
||||
|
|
|
@ -4,9 +4,20 @@ info:
|
|||
title: CHANGELOG
|
||||
repository_url: https://gitlab.com/Earthnuker/ed_lrr
|
||||
options:
|
||||
commit_groups:
|
||||
title_maps:
|
||||
feat: Features
|
||||
fix: Bug Fixes
|
||||
perf: Performance Improvements
|
||||
refactor: Code Refactoring
|
||||
misc: Miscellaneous
|
||||
other: Other
|
||||
docs: Documentation
|
||||
header:
|
||||
pattern: "^(.*)$"
|
||||
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
|
||||
pattern_maps:
|
||||
- Type
|
||||
- Scope
|
||||
- Subject
|
||||
notes:
|
||||
keywords:
|
||||
|
|
15
CHANGELOG.md
Normal file
15
CHANGELOG.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
<a name="unreleased"></a>
|
||||
## [Unreleased]
|
||||
|
||||
### Features
|
||||
- **GUI:** Implement route plotting and fuzzy search
|
||||
- **GUI:** Add Download functionlaity, update Rust code, update Python code
|
||||
|
||||
### Miscellaneous
|
||||
- Added changelog
|
||||
|
||||
|
||||
<a name="0.0.0"></a>
|
||||
## 0.0.0 - 2019-07-15
|
||||
|
||||
[Unreleased]: https://gitlab.com/Earthnuker/ed_lrr/compare/0.0.0...HEAD
|
Loading…
Reference in a new issue