changie: 1.10.2 -> 1.11.0
Diff: https://github.com/miniscruff/changie/compare/v1.10.2...v1.11.0 Changelog: https://github.com/miniscruff/changie/blob/v1.11.0/CHANGELOG.md
This commit is contained in:
parent
5d4d40488d
commit
b933495252
2 changed files with 3 additions and 16 deletions
|
@ -2,18 +2,16 @@
|
|||
|
||||
buildGoModule rec {
|
||||
pname = "changie";
|
||||
version = "1.10.2";
|
||||
version = "1.11.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "miniscruff";
|
||||
repo = pname;
|
||||
sha256 = "sha256-1UUF82sYzZDzlhPD8R8QIfR/Vm/9uUAxHzai+A1FCaQ=";
|
||||
sha256 = "sha256-hnRK9pj5NruSRvo2oetyRMVwhO7T/wSEZjcbYHb7ZUY=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-oz327wlTrFCj8Hf1wPiND40Ew4kBB/k5doj1us8lhm4=";
|
||||
|
||||
patches = [ ./skip-flaky-test.patch ];
|
||||
vendorSha256 = "sha256-0/3Ou8z6yLWhc81hdN2gkaFLLlKQWUGcIdvRHVLTrjQ=";
|
||||
|
||||
ldflags = [ "-s" "-w" "-X=main.version=${version}" ];
|
||||
|
||||
|
@ -22,7 +20,6 @@ buildGoModule rec {
|
|||
changelog = "https://github.com/miniscruff/changie/blob/v${version}/CHANGELOG.md";
|
||||
description = "Automated changelog tool for preparing releases with lots of customization options";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ figsoda matthiasbeyer ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- a/core/change_test.go
|
||||
+++ b/core/change_test.go
|
||||
@@ -353,6 +353,7 @@ var _ = Describe("Change ask prompts", func() {
|
||||
})
|
||||
|
||||
It("gets error for invalid body", func() {
|
||||
+ Skip("")
|
||||
var min int64 = 5
|
||||
submitFailed := false
|
||||
config := Config{
|
Loading…
Reference in a new issue