diff --git a/cliff.toml b/cliff.toml deleted file mode 100644 index 8c5c36f..0000000 --- a/cliff.toml +++ /dev/null @@ -1,31 +0,0 @@ -[changelog] -header = """## Changelog -""" -body = """ -{% if version %}\ - {% if previous %}\ - ### [{{ version }}](https://github.com/PurpleBooth/ed-system-search/compare/{{ previous.version }}...{{ version }}) ({{ timestamp | date(format="%Y-%m-%d") }}) - {% else %}\ - ### [{{ version }}](https://github.com/PurpleBooth/ed-system-search/tree/{{ version }}) ({{ timestamp | date(format="%Y-%m-%d") }}) - {% endif %}\ -{% else %}\ - ### [unreleased] -{% endif %}\ -{% if previous %}\ - {% if previous.commit_id %} - [{{ previous.commit_id | truncate(length=7, end="") }}]({{ previous.commit_id }})...\ - [{{ commit_id | truncate(length=7, end="") }}]({{ commit_id }}) - {% endif %}\ -{% endif %}\ -{% for group, commits in commits | group_by(attribute="group") %} - ### {{ group | upper_first }} - {% for commit in commits %} - - {{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}]({{ commit.id }}))\ - {% endfor %} -{% endfor %}\n -""" -trim = true - -[git] -conventional_commits = true -tag_pattern = "v[0-9]*"