From d6c266a4ff49b854894dd44c706bb982faed304e Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Wed, 24 Jan 2024 10:55:07 +0100 Subject: [PATCH] chore: add unreleased section to cliff.toml --- cliff.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index e39d173..5ff09a3 100644 --- a/cliff.toml +++ b/cliff.toml @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 body = """ {% if version %}\ ## [{{ version | trim_start_matches(pat="v") }}](https://github.com/foundry-rs/block-explorers/releases/tag/v{{ version | trim_start_matches(pat="v") }}) - {{ timestamp | date(format="%Y-%m-%d") }} +{% else %}\ + ## [Unreleased](https://github.com/foundry-rs/block-explorers/compare/{{ previous.version }}...HEAD) {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | title }} @@ -29,7 +31,7 @@ footer = "" conventional_commits = true filter_unconventional = false commit_preprocessors = [ - { pattern = '#(\d+)', replace = "[#$1](https://github.com/foundry-rs/compilers/issues/$1)" }, + { pattern = '#(\d+)', replace = "[#$1](https://github.com/foundry-rs/block-explorers/issues/$1)" }, ] commit_parsers = [ { message = "^feat", group = "Features" },