From 9a015ca8d51f008940ea5780c801b3df798c13ae Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 27 Feb 2020 12:19:09 -0800 Subject: [PATCH 1/3] kyaml v0.1.0 release --- releasing/VERSIONS | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/releasing/VERSIONS b/releasing/VERSIONS index fa3eeacc3..7c841c0cd 100644 --- a/releasing/VERSIONS +++ b/releasing/VERSIONS @@ -5,8 +5,8 @@ # kyaml version export kyaml_major=0 -export kyaml_minor=0 -export kyaml_patch=13 +export kyaml_minor=1 +export kyaml_patch=0 # kstatus version export kstatus_major=0 @@ -20,8 +20,8 @@ export api_patch=2 # cmd/config version export cmd_config_major=0 -export cmd_config_minor=0 -export cmd_config_patch=13 +export cmd_config_minor=1 +export cmd_config_patch=0 # cmd/kubectl version export cmd_kubectl_major=0 From 523ab2e35f2408673de0c3392adadd0aff8c077a Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 27 Feb 2020 14:25:54 -0800 Subject: [PATCH 2/3] Add cmd/ and kyaml/ to prow tests --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 763f8037e..1d5bcf4cd 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,9 @@ verify-kustomize: \ .PHONY: prow-presubmit-check prow-presubmit-check: \ lint-kustomize \ - test-unit-kustomize-all + test-unit-kustomize-all \ + test-unit-cmd-all \ + test-go-mod .PHONY: verify-kustomize-e2e verify-kustomize-e2e: test-examples-e2e-kustomize @@ -204,6 +206,12 @@ test-unit-kustomize-all: \ test-unit-kustomize-cli \ test-unit-kustomize-plugins +test-unit-cmd-all: + ./travis/kyaml-pre-commit.sh + +test-go-mod: + ./travis/check-go-mod.sh + .PHONY: test-examples-kustomize-against-HEAD: $(MYGOBIN)/kustomize $(MYGOBIN)/mdrip ./hack/testExamplesAgainstKustomize.sh HEAD From 052deacbb26fbf445e2cfd65a0dd2694d667d245 Mon Sep 17 00:00:00 2001 From: Phillip Wittrock Date: Thu, 27 Feb 2020 15:49:53 -0800 Subject: [PATCH 3/3] Add license to kfns_test --- kyaml/yaml/kfns_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kyaml/yaml/kfns_test.go b/kyaml/yaml/kfns_test.go index 7b0e0cb8f..fe7d63573 100644 --- a/kyaml/yaml/kfns_test.go +++ b/kyaml/yaml/kfns_test.go @@ -1,3 +1,6 @@ +// Copyright 2019 The Kubernetes Authors. +// SPDX-License-Identifier: Apache-2.0 + package yaml import (