From 719badb5b8e9ae1b7350a7bf59e5b4be513097c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jagoda=20Estera=20=C5=9Al=C4=85zak?= <128227338+j-g00da@users.noreply.github.com> Date: Tue, 12 Aug 2025 08:02:01 +0200 Subject: [PATCH] chore: skip `alpha` and `beta` tags in `cliff.toml` (#2026) https://github.com/ratatui/ratatui/pull/2025#issuecomment-3135177683 --- cliff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cliff.toml b/cliff.toml index fb194034..5c94308f 100644 --- a/cliff.toml +++ b/cliff.toml @@ -143,9 +143,9 @@ filter_commits = false # glob pattern for matching git tags tag_pattern = "v[0-9]*" # regex for skipping tags -skip_tags = "v0.1.0-rc.1" +skip_tags = "beta|alpha|v0.1.0-rc.1" # regex for ignoring tags -ignore_tags = "alpha|beta|rc" +ignore_tags = "rc" # sort the tags topologically topo_order = false # sort the commits inside sections by oldest/newest order