From 5ede35f559fd73f8123a84773cff541e9b92c3f6 Mon Sep 17 00:00:00 2001 From: Ben Blattberg Date: Fri, 20 Dec 2024 13:05:19 -0600 Subject: [PATCH] Update copyright to 2025 --- .golangci.yaml | 2 +- LICENSE.md | 2 +- Makefile | 2 +- cmd/kubectl-pgo/main.go | 2 +- hack/boilerplate.go.txt | 2 +- hack/generate-docs.go | 2 +- .../v1beta1/groupversion_info.go | 2 +- .../v1beta1/postgrescluster_types.go | 2 +- internal/cmd/backup.go | 2 +- internal/cmd/backup_test.go | 2 +- internal/cmd/client_version.go | 2 +- internal/cmd/create.go | 2 +- internal/cmd/create_test.go | 2 +- internal/cmd/delete.go | 2 +- internal/cmd/exec.go | 2 +- internal/cmd/exec_test.go | 2 +- internal/cmd/export.go | 2 +- internal/cmd/export_test.go | 2 +- internal/cmd/pgo.go | 2 +- internal/cmd/pgo_test.go | 2 +- internal/cmd/restore.go | 2 +- internal/cmd/restore_test.go | 2 +- internal/cmd/show.go | 2 +- internal/cmd/start.go | 2 +- internal/cmd/stop.go | 2 +- internal/cmd/support.go | 2 +- internal/cmd/version.go | 2 +- internal/config.go | 2 +- internal/format.go | 2 +- internal/format_test.go | 2 +- internal/testing/cmp/cmp.go | 2 +- internal/unstructured.go | 2 +- internal/unstructured_test.go | 2 +- internal/util/enum.go | 2 +- internal/util/executor.go | 2 +- internal/util/interactions.go | 2 +- internal/util/interactions_test.go | 2 +- internal/util/naming.go | 2 +- internal/util/naming_test.go | 2 +- 39 files changed, 39 insertions(+), 39 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index b96d397..1bb49ae 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -58,7 +58,7 @@ linters-settings: SPDX-License-Identifier: Apache-2.0 values: regexp: - DATES: '(202[1-3] - 2024|2024)' + DATES: '(202[1-4] - 2025|2025)' goimports: local-prefixes: github.com/crunchydata/postgres-operator-client diff --git a/LICENSE.md b/LICENSE.md index 621e287..67be9ba 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -176,7 +176,7 @@ END OF TERMS AND CONDITIONS - Copyright 2021 - 2024 Crunchy Data Solutions, Inc. + Copyright 2021 - 2025 Crunchy Data Solutions, Inc. 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/Makefile b/Makefile index 0604eb8..051d0f0 100644 --- a/Makefile +++ b/Makefile @@ -98,4 +98,4 @@ tag: git push origin "v$(NEW_VERSION)" git tag "d$(NEW_VERSION)" git push origin "d$(NEW_VERSION)" - @echo "Make release from tag "v$(NEW_VERSION)" + @echo "Make release from tag v$(NEW_VERSION)" diff --git a/cmd/kubectl-pgo/main.go b/cmd/kubectl-pgo/main.go index c4bbdff..bffda2c 100644 --- a/cmd/kubectl-pgo/main.go +++ b/cmd/kubectl-pgo/main.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/hack/boilerplate.go.txt b/hack/boilerplate.go.txt index 7fc3d63..7c662ee 100644 --- a/hack/boilerplate.go.txt +++ b/hack/boilerplate.go.txt @@ -1,3 +1,3 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/hack/generate-docs.go b/hack/generate-docs.go index de343a7..86511e1 100644 --- a/hack/generate-docs.go +++ b/hack/generate-docs.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/apis/postgres-operator.crunchydata.com/v1beta1/groupversion_info.go b/internal/apis/postgres-operator.crunchydata.com/v1beta1/groupversion_info.go index 78de977..35c90b1 100644 --- a/internal/apis/postgres-operator.crunchydata.com/v1beta1/groupversion_info.go +++ b/internal/apis/postgres-operator.crunchydata.com/v1beta1/groupversion_info.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/apis/postgres-operator.crunchydata.com/v1beta1/postgrescluster_types.go b/internal/apis/postgres-operator.crunchydata.com/v1beta1/postgrescluster_types.go index c5ed10e..8419a7f 100644 --- a/internal/apis/postgres-operator.crunchydata.com/v1beta1/postgrescluster_types.go +++ b/internal/apis/postgres-operator.crunchydata.com/v1beta1/postgrescluster_types.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/backup.go b/internal/cmd/backup.go index 9c63491..bfdf582 100644 --- a/internal/cmd/backup.go +++ b/internal/cmd/backup.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/backup_test.go b/internal/cmd/backup_test.go index ed93022..ce2187f 100644 --- a/internal/cmd/backup_test.go +++ b/internal/cmd/backup_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/client_version.go b/internal/cmd/client_version.go index d23df7f..8d588fc 100644 --- a/internal/cmd/client_version.go +++ b/internal/cmd/client_version.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/create.go b/internal/cmd/create.go index 0f7aa53..90dd037 100644 --- a/internal/cmd/create.go +++ b/internal/cmd/create.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/create_test.go b/internal/cmd/create_test.go index cc83105..ee22d21 100644 --- a/internal/cmd/create_test.go +++ b/internal/cmd/create_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/delete.go b/internal/cmd/delete.go index 1ea41a8..a97ae1f 100644 --- a/internal/cmd/delete.go +++ b/internal/cmd/delete.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/exec.go b/internal/cmd/exec.go index 5eab7ef..0c81294 100644 --- a/internal/cmd/exec.go +++ b/internal/cmd/exec.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/exec_test.go b/internal/cmd/exec_test.go index e66e51b..70e1de6 100644 --- a/internal/cmd/exec_test.go +++ b/internal/cmd/exec_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/export.go b/internal/cmd/export.go index 2c89b13..fa3fd2a 100644 --- a/internal/cmd/export.go +++ b/internal/cmd/export.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/export_test.go b/internal/cmd/export_test.go index 19402d7..07a554e 100644 --- a/internal/cmd/export_test.go +++ b/internal/cmd/export_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/pgo.go b/internal/cmd/pgo.go index 743d69e..56d462a 100644 --- a/internal/cmd/pgo.go +++ b/internal/cmd/pgo.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/pgo_test.go b/internal/cmd/pgo_test.go index 36ae140..9f08c1b 100644 --- a/internal/cmd/pgo_test.go +++ b/internal/cmd/pgo_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/restore.go b/internal/cmd/restore.go index 8f45c23..904ee3d 100644 --- a/internal/cmd/restore.go +++ b/internal/cmd/restore.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/restore_test.go b/internal/cmd/restore_test.go index 3aacc9a..5248f23 100644 --- a/internal/cmd/restore_test.go +++ b/internal/cmd/restore_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/show.go b/internal/cmd/show.go index 00f0519..6e39245 100644 --- a/internal/cmd/show.go +++ b/internal/cmd/show.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/start.go b/internal/cmd/start.go index 2549015..9dc18ad 100644 --- a/internal/cmd/start.go +++ b/internal/cmd/start.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/stop.go b/internal/cmd/stop.go index fafce49..76517b6 100644 --- a/internal/cmd/stop.go +++ b/internal/cmd/stop.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/support.go b/internal/cmd/support.go index fe85c10..7027028 100644 --- a/internal/cmd/support.go +++ b/internal/cmd/support.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/cmd/version.go b/internal/cmd/version.go index f8c80f1..8dfff0e 100644 --- a/internal/cmd/version.go +++ b/internal/cmd/version.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/config.go b/internal/config.go index c476ddb..abe326f 100644 --- a/internal/config.go +++ b/internal/config.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/format.go b/internal/format.go index 371e546..2d7e7a0 100644 --- a/internal/format.go +++ b/internal/format.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/format_test.go b/internal/format_test.go index 76d016a..2e676c5 100644 --- a/internal/format_test.go +++ b/internal/format_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/testing/cmp/cmp.go b/internal/testing/cmp/cmp.go index bdaf230..4cca025 100644 --- a/internal/testing/cmp/cmp.go +++ b/internal/testing/cmp/cmp.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/unstructured.go b/internal/unstructured.go index 7218471..568c96d 100644 --- a/internal/unstructured.go +++ b/internal/unstructured.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/unstructured_test.go b/internal/unstructured_test.go index 1962f3d..1a91c09 100644 --- a/internal/unstructured_test.go +++ b/internal/unstructured_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/util/enum.go b/internal/util/enum.go index c784195..795a096 100644 --- a/internal/util/enum.go +++ b/internal/util/enum.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/util/executor.go b/internal/util/executor.go index ec83dde..88bea76 100644 --- a/internal/util/executor.go +++ b/internal/util/executor.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/util/interactions.go b/internal/util/interactions.go index c9e83cd..8a30bc0 100644 --- a/internal/util/interactions.go +++ b/internal/util/interactions.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/util/interactions_test.go b/internal/util/interactions_test.go index 1086aa6..6e5236a 100644 --- a/internal/util/interactions_test.go +++ b/internal/util/interactions_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/util/naming.go b/internal/util/naming.go index d1753d6..446fccf 100644 --- a/internal/util/naming.go +++ b/internal/util/naming.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0 diff --git a/internal/util/naming_test.go b/internal/util/naming_test.go index 6ecd1db..ff558d2 100644 --- a/internal/util/naming_test.go +++ b/internal/util/naming_test.go @@ -1,4 +1,4 @@ -// Copyright 2021 - 2024 Crunchy Data Solutions, Inc. +// Copyright 2021 - 2025 Crunchy Data Solutions, Inc. // // SPDX-License-Identifier: Apache-2.0