Side-by-side semantic diff tool with theme support and hookable integration
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: strip v prefix from VERSION written by bump-version

svu defaults to a 'v' tag prefix which was leaking into the Nix
derivation name (adiff-v0.5.0 instead of adiff-0.5.0). Pass
--tag.prefix "" so the unprefixed version is written to VERSION,
and correct the current VERSION file accordingly.

+2 -2
+1 -1
VERSION
··· 1 - v0.5.0 1 + 0.5.0
+1 -1
flake.nix
··· 154 154 root=$(${pkgs.lib.getExe pkgs.jujutsu} root 2>/dev/null || git rev-parse --show-toplevel) 155 155 cd "$root" 156 156 subcmd=''${1:-next} 157 - new=$(${pkgs.lib.getExe pkgs.svu} "$subcmd") 157 + new=$(${pkgs.lib.getExe pkgs.svu} "$subcmd" --tag.prefix "") 158 158 printf '%s\n' "$new" > VERSION 159 159 echo "VERSION bumped to $new" 160 160 ${pkgs.lib.getExe pkgs.git-cliff} --tag "$new" --output CHANGELOG.md