From 935d9c0d4045cfcda2bbfa9a599224ae29329816 Mon Sep 17 00:00:00 2001 From: gitkass <190964064+gitkass@users.noreply.github.com> Date: Sun, 1 Feb 2026 20:24:54 -0500 Subject: [PATCH] add svu config --- .svu.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .svu.yml diff --git a/.svu.yml b/.svu.yml new file mode 100644 index 0000000..8b0e5f4 --- /dev/null +++ b/.svu.yml @@ -0,0 +1,13 @@ +# svu (semantic version utility) config +# https://github.com/caarlos0/svu +# +# Use with: svu next (auto bump from conventional commits), svu patch, svu minor, svu major + +# Tag prefix; use "v" for tags like v1.0.0 +prefix: "v" + +# Bump at least patch when using "next" (e.g. if no conventional commits found) +always: true + +# Treat v0.x as pre-1.0; allow minor bumps for 0.x +v0: true