File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project are documented in this file.
44
5+ ## 0.0.9 (2020-09-11)
6+
7+ This prerelease makes the ` api ` package available as
8+ a dedicated versioned module.
9+
510## 0.0.8 (2020-09-02)
611
712This prerelease comes with support for publishing events to GitHub commit status API.
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ all: manager
1414
1515# Run tests
1616test : generate fmt vet manifests api-docs
17- find . -maxdepth 2 -type f -name ' go.mod' -execdir go test ./... -coverprofile cover.out \;
17+ go test ./... -coverprofile cover.out
18+ cd api; go test ./... -coverprofile cover.out
1819
1920# Build manager binary
2021manager : generate fmt vet
@@ -62,11 +63,13 @@ api-docs: gen-crd-api-reference-docs
6263
6364# Run go fmt against code
6465fmt :
65- find . -maxdepth 2 -type f -name ' go.mod' -execdir go fmt ./... \;
66+ go fmt ./...
67+ cd api; go fmt ./...
6668
6769# Run go vet against code
6870vet :
69- find . -maxdepth 2 -type f -name ' go.mod' -execdir go vet ./... \;
71+ go vet ./...
72+ cd api; go vet ./...
7073
7174# Generate code
7275generate : controller-gen
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ resources:
66images :
77 - name : fluxcd/notification-controller
88 newName : fluxcd/notification-controller
9- newTag : v0.0.8
9+ newTag : v0.0.9
Original file line number Diff line number Diff line change 55replace github.com/fluxcd/notification-controller/api => ./api
66
77require (
8- github.com/fluxcd/notification-controller/api v0.0.0-00010101000000-000000000000
8+ github.com/fluxcd/notification-controller/api v0.0.9
99 github.com/fluxcd/pkg/recorder v0.0.6
1010 github.com/fluxcd/pkg/runtime v0.0.1
1111 github.com/fluxcd/source-controller/api v0.0.13
You can’t perform that action at this time.
0 commit comments