From f3c5155f8c5b62af88e5a90f890ee8ac9000836c Mon Sep 17 00:00:00 2001 From: Sri Krishna <93153132+srikrsna-buf@users.noreply.github.com> Date: Thu, 9 Nov 2023 21:57:53 +0530 Subject: [PATCH] Update header (#47) Update header to latest. --- BUILD.bazel | 2 +- MODULE.bazel | 14 ++++++++++++++ Makefile | 2 +- buf/BUILD.bazel | 2 +- buf/defs.bzl | 2 +- buf/extensions.bzl | 14 ++++++++++++++ buf/internal/BUILD.bazel | 2 +- buf/internal/breaking.bzl | 2 +- buf/internal/dependencies.bzl | 2 +- buf/internal/lint.bzl | 2 +- buf/internal/plugin.bzl | 2 +- buf/internal/push.bzl | 2 +- buf/internal/repo.bzl | 2 +- buf/internal/toolchain.bzl | 2 +- buf/repositories.bzl | 2 +- examples/bzlmod/BUILD.bazel | 14 ++++++++++++++ examples/bzlmod/MODULE.bazel | 14 ++++++++++++++ examples/bzlmod/file.proto | 14 ++++++++++++++ examples/bzlmod/unused.proto | 14 ++++++++++++++ examples/gazelle/BUILD.bazel | 2 +- examples/gazelle/barapis/BUILD.bazel | 2 +- examples/gazelle/barapis/bar/v1/BUILD.bazel | 2 +- examples/gazelle/barapis/bar/v1/bar.proto | 2 +- examples/gazelle/buf_deps.bzl | 2 +- examples/gazelle/fooapis/BUILD.bazel | 2 +- examples/gazelle/fooapis/foo/v1/BUILD.bazel | 2 +- examples/gazelle/fooapis/foo/v1/foo.proto | 2 +- examples/single_module/BUILD.bazel | 2 +- examples/single_module/bar/v1/BUILD.bazel | 2 +- examples/single_module/bar/v1/bar.proto | 2 +- examples/single_module/foo/v1/BUILD.bazel | 2 +- examples/single_module/foo/v1/foo.proto | 2 +- examples/version/BUILD.bazel | 2 +- examples/version/foo/v1/BUILD.bazel | 2 +- examples/version/foo/v1/foo.proto | 2 +- examples/version/version.bzl | 2 +- examples/workspace/barapis/BUILD.bazel | 2 +- examples/workspace/barapis/bar/v1/BUILD.bazel | 2 +- examples/workspace/barapis/bar/v1/bar.proto | 2 +- examples/workspace/fooapis/BUILD.bazel | 2 +- examples/workspace/fooapis/foo/v1/BUILD.bazel | 2 +- examples/workspace/fooapis/foo/v1/foo.proto | 2 +- gazelle/buf/buf.go | 2 +- gazelle/buf/buf_lang.go | 2 +- gazelle/buf/buf_lock.go | 2 +- gazelle/buf/buf_test.go | 2 +- gazelle/buf/buf_work.go | 2 +- gazelle/buf/config.go | 2 +- gazelle/buf/cross_resolve.go | 2 +- gazelle/buf/generate.go | 2 +- gazelle/buf/kinds.go | 2 +- gazelle/buf/repositories.bzl | 2 +- gazelle/buf/resolve.go | 2 +- gazelle/buf/update.go | 2 +- repositories.bzl | 2 +- tools/buf/BUILD.bazel | 2 +- tools/protoc-gen-buf-breaking/BUILD.bazel | 2 +- tools/protoc-gen-buf-lint/BUILD.bazel | 2 +- 58 files changed, 136 insertions(+), 52 deletions(-) diff --git a/BUILD.bazel b/BUILD.bazel index 99c04b8..08b0b55 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/MODULE.bazel b/MODULE.bazel index c1b5199..d06e24c 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,3 +1,17 @@ +# Copyright 2021-2023 Buf Technologies, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + "Bazel module definition for bzlmod" module( name = "rules_buf", diff --git a/Makefile b/Makefile index 26cd357..21fe82e 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ MAKEFLAGS += --warn-undefined-variables MAKEFLAGS += --no-builtin-rules MAKEFLAGS += --no-print-directory BIN := .tmp/bin -COPYRIGHT_YEARS := 2021-2022 +COPYRIGHT_YEARS := 2021-2023 LICENSE_IGNORE := -e /testdata/ # Commit where bazel support was added LICENSE_HEADER_VERSION := dc4b633f0accc5f571c577325ce556a8e988ec4e diff --git a/buf/BUILD.bazel b/buf/BUILD.bazel index fe76d05..ae63103 100644 --- a/buf/BUILD.bazel +++ b/buf/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/defs.bzl b/buf/defs.bzl index 3b53d72..ef496a9 100644 --- a/buf/defs.bzl +++ b/buf/defs.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/extensions.bzl b/buf/extensions.bzl index 95d120c..76ddaf3 100644 --- a/buf/extensions.bzl +++ b/buf/extensions.bzl @@ -1,3 +1,17 @@ +# Copyright 2021-2023 Buf Technologies, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + """Define module extensions for using rules_buf with bzlmod. See https://bazel.build/docs/bzlmod#extension-definition """ diff --git a/buf/internal/BUILD.bazel b/buf/internal/BUILD.bazel index 6b07503..a46472d 100644 --- a/buf/internal/BUILD.bazel +++ b/buf/internal/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/breaking.bzl b/buf/internal/breaking.bzl index 9767b1c..4eda6fe 100644 --- a/buf/internal/breaking.bzl +++ b/buf/internal/breaking.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/dependencies.bzl b/buf/internal/dependencies.bzl index 26345a4..faf963c 100644 --- a/buf/internal/dependencies.bzl +++ b/buf/internal/dependencies.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/lint.bzl b/buf/internal/lint.bzl index d8cd049..b9fb5f3 100644 --- a/buf/internal/lint.bzl +++ b/buf/internal/lint.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/plugin.bzl b/buf/internal/plugin.bzl index 8d684fe..45ee608 100644 --- a/buf/internal/plugin.bzl +++ b/buf/internal/plugin.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/push.bzl b/buf/internal/push.bzl index 27cb7f0..4364523 100644 --- a/buf/internal/push.bzl +++ b/buf/internal/push.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/repo.bzl b/buf/internal/repo.bzl index 45bea14..eb461a9 100644 --- a/buf/internal/repo.bzl +++ b/buf/internal/repo.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/internal/toolchain.bzl b/buf/internal/toolchain.bzl index af233ac..ab498e8 100644 --- a/buf/internal/toolchain.bzl +++ b/buf/internal/toolchain.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/buf/repositories.bzl b/buf/repositories.bzl index d98ba7a..1322f4b 100644 --- a/buf/repositories.bzl +++ b/buf/repositories.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/bzlmod/BUILD.bazel b/examples/bzlmod/BUILD.bazel index 4bb7b41..7d1b62c 100644 --- a/examples/bzlmod/BUILD.bazel +++ b/examples/bzlmod/BUILD.bazel @@ -1,3 +1,17 @@ +# Copyright 2021-2023 Buf Technologies, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + load("@rules_buf//buf:defs.bzl", "buf_lint_test") load("@rules_proto//proto:defs.bzl", "proto_library") diff --git a/examples/bzlmod/MODULE.bazel b/examples/bzlmod/MODULE.bazel index 9cf71d1..15a7b33 100644 --- a/examples/bzlmod/MODULE.bazel +++ b/examples/bzlmod/MODULE.bazel @@ -1,3 +1,17 @@ +# Copyright 2021-2023 Buf Technologies, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + "Bazel dependencies" bazel_dep(name = "rules_buf", dev_dependency = True, version = "0.0.0") diff --git a/examples/bzlmod/file.proto b/examples/bzlmod/file.proto index 1ce71de..92235b4 100644 --- a/examples/bzlmod/file.proto +++ b/examples/bzlmod/file.proto @@ -1,3 +1,17 @@ +// Copyright 2021-2023 Buf Technologies, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + syntax = "proto3"; import "unused.proto"; diff --git a/examples/bzlmod/unused.proto b/examples/bzlmod/unused.proto index d95660e..30cb311 100644 --- a/examples/bzlmod/unused.proto +++ b/examples/bzlmod/unused.proto @@ -1 +1,15 @@ +// Copyright 2021-2023 Buf Technologies, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + syntax = "proto3"; \ No newline at end of file diff --git a/examples/gazelle/BUILD.bazel b/examples/gazelle/BUILD.bazel index 9469f1f..5bb1922 100644 --- a/examples/gazelle/BUILD.bazel +++ b/examples/gazelle/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/barapis/BUILD.bazel b/examples/gazelle/barapis/BUILD.bazel index 2b1f55a..040452e 100644 --- a/examples/gazelle/barapis/BUILD.bazel +++ b/examples/gazelle/barapis/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/barapis/bar/v1/BUILD.bazel b/examples/gazelle/barapis/bar/v1/BUILD.bazel index 2773b80..37b193f 100644 --- a/examples/gazelle/barapis/bar/v1/BUILD.bazel +++ b/examples/gazelle/barapis/bar/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/barapis/bar/v1/bar.proto b/examples/gazelle/barapis/bar/v1/bar.proto index 81317dc..fcee7af 100644 --- a/examples/gazelle/barapis/bar/v1/bar.proto +++ b/examples/gazelle/barapis/bar/v1/bar.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/buf_deps.bzl b/examples/gazelle/buf_deps.bzl index 3300e1f..7c74dbb 100644 --- a/examples/gazelle/buf_deps.bzl +++ b/examples/gazelle/buf_deps.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/fooapis/BUILD.bazel b/examples/gazelle/fooapis/BUILD.bazel index 1436874..f50191f 100644 --- a/examples/gazelle/fooapis/BUILD.bazel +++ b/examples/gazelle/fooapis/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/fooapis/foo/v1/BUILD.bazel b/examples/gazelle/fooapis/foo/v1/BUILD.bazel index 9ce3795..bc2bc62 100644 --- a/examples/gazelle/fooapis/foo/v1/BUILD.bazel +++ b/examples/gazelle/fooapis/foo/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/gazelle/fooapis/foo/v1/foo.proto b/examples/gazelle/fooapis/foo/v1/foo.proto index 3aee1ff..c96fba4 100644 --- a/examples/gazelle/fooapis/foo/v1/foo.proto +++ b/examples/gazelle/fooapis/foo/v1/foo.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/examples/single_module/BUILD.bazel b/examples/single_module/BUILD.bazel index 17efa4a..ec6f60a 100644 --- a/examples/single_module/BUILD.bazel +++ b/examples/single_module/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/single_module/bar/v1/BUILD.bazel b/examples/single_module/bar/v1/BUILD.bazel index 85a7dea..68f8502 100644 --- a/examples/single_module/bar/v1/BUILD.bazel +++ b/examples/single_module/bar/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/single_module/bar/v1/bar.proto b/examples/single_module/bar/v1/bar.proto index 9ae7001..7d91aa6 100644 --- a/examples/single_module/bar/v1/bar.proto +++ b/examples/single_module/bar/v1/bar.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/examples/single_module/foo/v1/BUILD.bazel b/examples/single_module/foo/v1/BUILD.bazel index f6db6ee..285bdd7 100644 --- a/examples/single_module/foo/v1/BUILD.bazel +++ b/examples/single_module/foo/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/single_module/foo/v1/foo.proto b/examples/single_module/foo/v1/foo.proto index 4e5227b..f90aac7 100644 --- a/examples/single_module/foo/v1/foo.proto +++ b/examples/single_module/foo/v1/foo.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/examples/version/BUILD.bazel b/examples/version/BUILD.bazel index 5c70c16..85f1bf8 100644 --- a/examples/version/BUILD.bazel +++ b/examples/version/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/version/foo/v1/BUILD.bazel b/examples/version/foo/v1/BUILD.bazel index f6db6ee..285bdd7 100644 --- a/examples/version/foo/v1/BUILD.bazel +++ b/examples/version/foo/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/version/foo/v1/foo.proto b/examples/version/foo/v1/foo.proto index c27ca85..76e3b79 100644 --- a/examples/version/foo/v1/foo.proto +++ b/examples/version/foo/v1/foo.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/examples/version/version.bzl b/examples/version/version.bzl index b06e949..4e7a2c9 100644 --- a/examples/version/version.bzl +++ b/examples/version/version.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/workspace/barapis/BUILD.bazel b/examples/workspace/barapis/BUILD.bazel index d0cbf53..36df1ec 100644 --- a/examples/workspace/barapis/BUILD.bazel +++ b/examples/workspace/barapis/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/workspace/barapis/bar/v1/BUILD.bazel b/examples/workspace/barapis/bar/v1/BUILD.bazel index 4352f9b..4124681 100644 --- a/examples/workspace/barapis/bar/v1/BUILD.bazel +++ b/examples/workspace/barapis/bar/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/workspace/barapis/bar/v1/bar.proto b/examples/workspace/barapis/bar/v1/bar.proto index 8d251f2..23d917f 100644 --- a/examples/workspace/barapis/bar/v1/bar.proto +++ b/examples/workspace/barapis/bar/v1/bar.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/examples/workspace/fooapis/BUILD.bazel b/examples/workspace/fooapis/BUILD.bazel index a31a650..256e43f 100644 --- a/examples/workspace/fooapis/BUILD.bazel +++ b/examples/workspace/fooapis/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/workspace/fooapis/foo/v1/BUILD.bazel b/examples/workspace/fooapis/foo/v1/BUILD.bazel index 2eacca1..6ae7d9f 100644 --- a/examples/workspace/fooapis/foo/v1/BUILD.bazel +++ b/examples/workspace/fooapis/foo/v1/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/examples/workspace/fooapis/foo/v1/foo.proto b/examples/workspace/fooapis/foo/v1/foo.proto index 3aee1ff..c96fba4 100644 --- a/examples/workspace/fooapis/foo/v1/foo.proto +++ b/examples/workspace/fooapis/foo/v1/foo.proto @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/buf.go b/gazelle/buf/buf.go index ecae548..faf8b23 100644 --- a/gazelle/buf/buf.go +++ b/gazelle/buf/buf.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/buf_lang.go b/gazelle/buf/buf_lang.go index 7dcf1d6..3d67265 100644 --- a/gazelle/buf/buf_lang.go +++ b/gazelle/buf/buf_lang.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/buf_lock.go b/gazelle/buf/buf_lock.go index 7375d81..23cb577 100644 --- a/gazelle/buf/buf_lock.go +++ b/gazelle/buf/buf_lock.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/buf_test.go b/gazelle/buf/buf_test.go index e57fa2d..d4cb09b 100644 --- a/gazelle/buf/buf_test.go +++ b/gazelle/buf/buf_test.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/buf_work.go b/gazelle/buf/buf_work.go index 09fa4c3..a2fbf87 100644 --- a/gazelle/buf/buf_work.go +++ b/gazelle/buf/buf_work.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/config.go b/gazelle/buf/config.go index efc62e1..f4b7bf6 100644 --- a/gazelle/buf/config.go +++ b/gazelle/buf/config.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/cross_resolve.go b/gazelle/buf/cross_resolve.go index dccf9d3..59bb299 100644 --- a/gazelle/buf/cross_resolve.go +++ b/gazelle/buf/cross_resolve.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/generate.go b/gazelle/buf/generate.go index 7766961..f895759 100644 --- a/gazelle/buf/generate.go +++ b/gazelle/buf/generate.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/kinds.go b/gazelle/buf/kinds.go index 8dd333a..3f40c81 100644 --- a/gazelle/buf/kinds.go +++ b/gazelle/buf/kinds.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/repositories.bzl b/gazelle/buf/repositories.bzl index 87508ec..adc1b62 100644 --- a/gazelle/buf/repositories.bzl +++ b/gazelle/buf/repositories.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/resolve.go b/gazelle/buf/resolve.go index 6a38c66..3e05dc9 100644 --- a/gazelle/buf/resolve.go +++ b/gazelle/buf/resolve.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/gazelle/buf/update.go b/gazelle/buf/update.go index ba44adf..0b299be 100644 --- a/gazelle/buf/update.go +++ b/gazelle/buf/update.go @@ -1,4 +1,4 @@ -// Copyright 2021-2022 Buf Technologies, Inc. +// Copyright 2021-2023 Buf Technologies, 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/repositories.bzl b/repositories.bzl index c8147aa..1f6fa2f 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/tools/buf/BUILD.bazel b/tools/buf/BUILD.bazel index 28ce096..7f812f8 100644 --- a/tools/buf/BUILD.bazel +++ b/tools/buf/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/tools/protoc-gen-buf-breaking/BUILD.bazel b/tools/protoc-gen-buf-breaking/BUILD.bazel index 28ce096..7f812f8 100644 --- a/tools/protoc-gen-buf-breaking/BUILD.bazel +++ b/tools/protoc-gen-buf-breaking/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, 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/tools/protoc-gen-buf-lint/BUILD.bazel b/tools/protoc-gen-buf-lint/BUILD.bazel index 28ce096..7f812f8 100644 --- a/tools/protoc-gen-buf-lint/BUILD.bazel +++ b/tools/protoc-gen-buf-lint/BUILD.bazel @@ -1,4 +1,4 @@ -# Copyright 2021-2022 Buf Technologies, Inc. +# Copyright 2021-2023 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.