changie 1.13.1 -> 1.14.0 https://github.com/miniscruff/changie/releases attrpath: changie Checking auto update branch... No auto update branch exists Old version 1.13.1" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "changie"; version = "1.14.0"; src = fetchFromGitHub { owner = "miniscruff"; repo = "changie"; rev = "v${version}"; hash = "sha256-ulbpitTCIuRg50GAin54RNVMUl8ZuwYW1SnenvemckA="; }; vendorHash = "sha256-giOL4/ZofaylhX+s7y75RR7d3WDxNCmr25JHBZZkH9s="; nativeBuildInputs = [ installShellFiles ]; ldflags = [ "-s" "-w" "-X=main.version=${version}" ]; postInstall = '' installShellCompletion --cmd changie \ --bash <($out/bin/changie completion bash) \ --fish <($out/bin/changie completion fish) \ --zsh <($out/bin/changie completion zsh) ''; meta = with lib; { description = "Automated changelog tool for preparing releases with lots of customization options"; homepage = "https://changie.dev"; changelog = "https://github.com/miniscruff/changie/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; }