From bf67beb99cf801a246ef991d4d36142d1bdfd59e Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Sat, 9 May 2020 05:10:30 -0700 Subject: [PATCH] Change package path to kubepack.dev/chart-doc-gen Signed-off-by: Tamal Saha --- Makefile | 2 +- README.md | 2 +- go.mod | 2 +- hack/build.sh | 2 +- hack/e2e.sh | 2 +- hack/fmt.sh | 2 +- hack/license/bash.txt | 2 +- hack/license/dockerfile.txt | 2 +- hack/license/go.txt | 2 +- hack/test.sh | 2 +- main.go | 4 ++-- types.go | 2 +- walk.go | 4 ++-- walk/comment.go | 2 +- walk/nonassociative_sequence.go | 2 +- walk/scalar.go | 2 +- 16 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Makefile b/Makefile index 5f217eb..feb415a 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ SHELL=/bin/bash -o pipefail -GO_PKG := kmodules.xyz +GO_PKG := kubepack.dev REPO := $(notdir $(shell pwd)) BIN := chart-doc-gen COMPRESS ?= no diff --git a/README.md b/README.md index 6c16628..6f1a8aa 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ $ go run *.go \ Download the pre-built binaries from release page and copy to your $PATH directory. If you are using Go modules, you can install like below: ```console -go get -u kmodules.xyz/chart-doc-gen@v0.2.8 +go get -u kubepack.dev/chart-doc-gen@v0.3.0 ``` ## How does it work diff --git a/go.mod b/go.mod index efc9638..36fa1e1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module kmodules.xyz/chart-doc-gen +module kubepack.dev/chart-doc-gen go 1.14 diff --git a/hack/build.sh b/hack/build.sh index 5d8d48f..2f6668a 100755 --- a/hack/build.sh +++ b/hack/build.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright The Kmodules Authors. +# Copyright The Kubepack Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/e2e.sh b/hack/e2e.sh index ea73bb1..9c522fc 100755 --- a/hack/e2e.sh +++ b/hack/e2e.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright The Kmodules Authors. +# Copyright The Kubepack Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/fmt.sh b/hack/fmt.sh index b030c9e..d5a01f0 100755 --- a/hack/fmt.sh +++ b/hack/fmt.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright The Kmodules Authors. +# Copyright The Kubepack Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/license/bash.txt b/hack/license/bash.txt index b01201a..a188206 100644 --- a/hack/license/bash.txt +++ b/hack/license/bash.txt @@ -1,4 +1,4 @@ -# Copyright The Kmodules Authors. +# Copyright The Kubepack Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/license/dockerfile.txt b/hack/license/dockerfile.txt index b01201a..a188206 100644 --- a/hack/license/dockerfile.txt +++ b/hack/license/dockerfile.txt @@ -1,4 +1,4 @@ -# Copyright The Kmodules Authors. +# Copyright The Kubepack Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/hack/license/go.txt b/hack/license/go.txt index 357a249..a7fe7f2 100644 --- a/hack/license/go.txt +++ b/hack/license/go.txt @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/hack/test.sh b/hack/test.sh index d56b0a2..2cdc9d5 100755 --- a/hack/test.sh +++ b/hack/test.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright The Kmodules Authors. +# Copyright The Kubepack Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/main.go b/main.go index a23eeaf..44b784a 100644 --- a/main.go +++ b/main.go @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ import ( "os" "text/template" - "kmodules.xyz/chart-doc-gen/templates" + "kubepack.dev/chart-doc-gen/templates" "github.com/olekukonko/tablewriter" flag "github.com/spf13/pflag" diff --git a/types.go b/types.go index e50c16f..66849c2 100644 --- a/types.go +++ b/types.go @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/walk.go b/walk.go index 496c7fc..0b66c5a 100644 --- a/walk.go +++ b/walk.go @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -21,7 +21,7 @@ import ( "fmt" "strings" - "kmodules.xyz/chart-doc-gen/walk" + "kubepack.dev/chart-doc-gen/walk" "sigs.k8s.io/kustomize/kyaml/openapi" "sigs.k8s.io/kustomize/kyaml/yaml" diff --git a/walk/comment.go b/walk/comment.go index cd112e7..ba936a0 100644 --- a/walk/comment.go +++ b/walk/comment.go @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/walk/nonassociative_sequence.go b/walk/nonassociative_sequence.go index b375efb..59771c4 100644 --- a/walk/nonassociative_sequence.go +++ b/walk/nonassociative_sequence.go @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/walk/scalar.go b/walk/scalar.go index 339c391..9fa2914 100644 --- a/walk/scalar.go +++ b/walk/scalar.go @@ -1,5 +1,5 @@ /* -Copyright The Kmodules Authors. +Copyright The Kubepack Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.