diff options
author | Marc Cornellà <marc.cornella@live.com> | 2021-01-05 19:17:27 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2021-01-05 19:17:27 +0100 |
commit | 86f805280f6a8cf65d8d0a9380489aae4b72f767 (patch) | |
tree | a5b784340a87decb757b5bbbc0982eb1e377a388 /tools | |
parent | 6b57839292025d17d97410d1627228f3ec730a62 (diff) | |
download | zsh-86f805280f6a8cf65d8d0a9380489aae4b72f767.tar.gz zsh-86f805280f6a8cf65d8d0a9380489aae4b72f767.tar.bz2 zsh-86f805280f6a8cf65d8d0a9380489aae4b72f767.zip |
fix(changelog): display scope in breaking change messages
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/changelog.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/changelog.sh b/tools/changelog.sh index 634b61d01..7275db53a 100755 --- a/tools/changelog.sh +++ b/tools/changelog.sh @@ -286,7 +286,7 @@ function display-release { local hash subject for hash message in ${(kv)breaking}; do - echo " - $(fmt:hash) $(fmt:subject "${message}")" + echo " - $(fmt:hash) $(fmt:scope) $(fmt:subject "${message}")" done | sort echo } |