Skip to content

Commit 6e2b4b8

Browse files
committed
release note for v0.15.0
Signed-off-by: Soule BA <bah.soule@gmail.com>
1 parent 8daae1f commit 6e2b4b8

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ vet: ## Run go vet against code.
7777

7878
.PHONY: test
7979
test: manifests generate fmt vet build-wasm-testdata envtest ## Run tests.
80-
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test -v ./... -run TestConfigurationReconciler -coverprofile cover.out
80+
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) -p path)" go test ./... -coverprofile cover.out
8181

8282
.PHONY: e2e
8383
e2e: prime-test-cluster test-summary-tool ## Runs e2e tests

config/crd/bases/delivery.ocm.software_configurations.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,9 @@ spec:
270270
type: object
271271
subPath:
272272
type: string
273-
<<<<<<< HEAD
274273
required:
275274
- key
276275
- sourceRef
277-
=======
278-
>>>>>>> 948ce09 (adding support for configmap in mutation reconciler)
279276
type: object
280277
fluxSource:
281278
properties:
@@ -310,8 +307,6 @@ spec:
310307
- path
311308
- sourceRef
312309
type: object
313-
key:
314-
type: string
315310
type: object
316311
type: object
317312
status:

config/crd/bases/delivery.ocm.software_localizations.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,9 @@ spec:
270270
type: object
271271
subPath:
272272
type: string
273-
<<<<<<< HEAD
274273
required:
275274
- key
276275
- sourceRef
277-
=======
278-
>>>>>>> 948ce09 (adding support for configmap in mutation reconciler)
279276
type: object
280277
fluxSource:
281278
properties:
@@ -310,8 +307,6 @@ spec:
310307
- path
311308
- sourceRef
312309
type: object
313-
key:
314-
type: string
315310
type: object
316311
type: object
317312
status:

docs/release_notes/v0.15.0.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Release 0.15.0
2+
3+
- add blackduck scans (#270)
4+
- fix: ignore file not exists errors from the virtual filesystem (#272)
5+
- Update e2e.yaml (#273)
6+
- remove (#274)
7+
- one-liner (#277)
8+
- Change from field to text to avoid CR (#278)
9+
- fix: remove version pin from kustomize (#276)
10+
- Update actions (#280)
11+
- adding support for configmap in mutation reconciler (#281)
12+
- chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.57.1 (#283)

pkg/version/release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package version
66

77
// ReleaseVersion is the version number in semver format "vX.Y.Z", prefixed with "v".
8-
var ReleaseVersion = "v0.14.1"
8+
var ReleaseVersion = "v0.15.0"
99

1010
// ReleaseCandidate is the release candidate ID in format "rc.X", which will be appended to the release version.
1111
var ReleaseCandidate = "rc.1"

0 commit comments

Comments
 (0)