Skip to content

Commit 062cd71

Browse files
authored
Merge pull request #39 from fluxcd/release-v0.0.9
Release v0.0.9
2 parents ecc7178 + 8797926 commit 062cd71

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All 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

712
This prerelease comes with support for publishing events to GitHub commit status API.

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ all: manager
1414

1515
# Run tests
1616
test: 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
2021
manager: generate fmt vet
@@ -62,11 +63,13 @@ api-docs: gen-crd-api-reference-docs
6263

6364
# Run go fmt against code
6465
fmt:
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
6870
vet:
69-
find . -maxdepth 2 -type f -name 'go.mod' -execdir go vet ./... \;
71+
go vet ./...
72+
cd api; go vet ./...
7073

7174
# Generate code
7275
generate: controller-gen

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ resources:
66
images:
77
- name: fluxcd/notification-controller
88
newName: fluxcd/notification-controller
9-
newTag: v0.0.8
9+
newTag: v0.0.9

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.14
55
replace github.com/fluxcd/notification-controller/api => ./api
66

77
require (
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

0 commit comments

Comments
 (0)