-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
244 additions
and
43 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
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 |
---|---|---|
@@ -1,5 +1,13 @@ | ||
This is my changelog | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
{% for commit in commits -%} | ||
{% include 'commit.md' with context %} | ||
{% endfor %} | ||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
{% for version in gitolog.versions_list -%} | ||
{% include 'version.md' with context %} | ||
{% endfor -%} | ||
|
||
{% for version in gitolog.versions_list -%} | ||
{% include 'version_link.md' with context %} | ||
{% endfor -%} |
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 |
---|---|---|
@@ -1,12 +1 @@ | ||
commit {{ commit.commit_hash }} | ||
Author name: {{ commit.author_name }} | ||
Author email: {{ commit.author_email }} | ||
Author date: {{ commit.author_date }} | ||
Committer name: {{ commit.committer_name }} | ||
Committer email: {{ commit.committer_email }} | ||
Committer date: {{ commit.committer_date }} | ||
{% if commit.tag %}Tag: {{ commit.tag }}{% endif %} | ||
Subject: {{ commit.subject }} | ||
Body: {% for line in commit.body %} | ||
{% if line %}{{ line }}{% endif %} | ||
{% endfor %} | ||
- {{ commit.subject }} ([{{ commit.hash }}]({{ commit.url }})) |
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,4 @@ | ||
### {{ section.type or "Misc" }} | ||
{% for commit in section.commits -%} | ||
{% include 'commit.md' with context %} | ||
{% endfor %} |
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,12 @@ | ||
## [{{ version.tag }}]{% if version.date %} - {{ version.date }}{% endif %} | ||
|
||
{% for type, section in version.sections_dict|dictsort -%} | ||
{%- if type and type != 'Merged' -%} | ||
{% include 'section.md' with context %} | ||
{% endif -%} | ||
{%- endfor -%} | ||
{%- if version.untyped_section -%} | ||
{%- with section = version.untyped_section -%} | ||
{% include 'section.md' with context %} | ||
{% endwith -%} | ||
{%- endif -%} |
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 @@ | ||
{%- if version.previous_version -%} | ||
{%- if version.date -%} | ||
[{{ version.tag }}]: {{ gitolog.compare_url }}{{ version.previous_version.tag }}...{{ version.tag}} | ||
{%- else -%} | ||
[{{ version.tag }}]: {{ gitolog.compare_url }}{{ version.previous_version.tag }}...HEAD | ||
{% endif -%} | ||
{%- endif -%} |