From be5c50a87ed83a29ce555a76a1a70cd1193bf062 Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Wed, 10 Jan 2024 14:50:11 +0100 Subject: [PATCH 1/3] Update copyright for 2024 Updates the copyright range to include 2024 and regenerates code. --- Makefile | 2 +- buffer_pool.go | 2 +- codec.go | 2 +- codec_test.go | 2 +- compression.go | 2 +- errors.go | 2 +- internal/examples/connect-grpc/cmd/client/main.go | 2 +- internal/examples/connect-grpc/cmd/server/main.go | 2 +- internal/examples/fileserver/main.go | 2 +- internal/examples/pets/cmd/pets-be/main.go | 2 +- internal/examples/pets/cmd/pets-fe/main.go | 2 +- .../pets/internal/gen/io/swagger/petstore/v2/pets.pb.go | 2 +- .../io/swagger/petstore/v2/petstorev2connect/pets.connect.go | 2 +- .../pets/internal/proto/io/swagger/petstore/v2/pets.proto | 2 +- internal/examples/pets/internal/trace.go | 2 +- internal/gen/vanguard/test/v1/content.pb.go | 2 +- internal/gen/vanguard/test/v1/content_grpc.pb.go | 2 +- internal/gen/vanguard/test/v1/library.pb.go | 2 +- internal/gen/vanguard/test/v1/library_grpc.pb.go | 2 +- internal/gen/vanguard/test/v1/test.pb.go | 2 +- internal/gen/vanguard/test/v1/testv1connect/content.connect.go | 2 +- internal/gen/vanguard/test/v1/testv1connect/library.connect.go | 2 +- internal/proto/vanguard/test/v1/content.proto | 2 +- internal/proto/vanguard/test/v1/library.proto | 2 +- internal/proto/vanguard/test/v1/test.proto | 2 +- params.go | 2 +- params_test.go | 2 +- path_parser.go | 2 +- path_parser_test.go | 2 +- path_scanner.go | 2 +- protocol.go | 2 +- protocol_connect.go | 2 +- protocol_grpc.go | 2 +- protocol_grpc_test.go | 2 +- protocol_http.go | 2 +- protocol_http_test.go | 2 +- protocol_rest.go | 2 +- protocol_test.go | 2 +- router.go | 2 +- router_test.go | 2 +- transcoder.go | 2 +- transcoder_bench_test.go | 2 +- transcoder_test.go | 2 +- vanguard.go | 2 +- vanguard_examples_test.go | 2 +- vanguard_restxrpc_test.go | 2 +- vanguard_rpcxrest_test.go | 2 +- vanguard_rpcxrpc_test.go | 2 +- vanguard_test.go | 2 +- vanguardgrpc/vanguardgrpc.go | 2 +- vanguardgrpc/vanguardgrpc_examples_test.go | 2 +- 51 files changed, 51 insertions(+), 51 deletions(-) diff --git a/Makefile b/Makefile index d40b680..88d09ef 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 := 2023 +COPYRIGHT_YEARS := 2024 LICENSE_IGNORE := -e testdata/ # Set to use a different compiler. For example, `GO=go1.18rc1 make test`. GO ?= go diff --git a/buffer_pool.go b/buffer_pool.go index d9374ee..25acf97 100644 --- a/buffer_pool.go +++ b/buffer_pool.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/codec.go b/codec.go index 12c2072..6163c4c 100644 --- a/codec.go +++ b/codec.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/codec_test.go b/codec_test.go index 1f55e6f..19942a8 100644 --- a/codec_test.go +++ b/codec_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/compression.go b/compression.go index f38c32c..6c654dd 100644 --- a/compression.go +++ b/compression.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/errors.go b/errors.go index d4dbfce..6fe4cc7 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/connect-grpc/cmd/client/main.go b/internal/examples/connect-grpc/cmd/client/main.go index 5732b2d..d22e3c7 100644 --- a/internal/examples/connect-grpc/cmd/client/main.go +++ b/internal/examples/connect-grpc/cmd/client/main.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/connect-grpc/cmd/server/main.go b/internal/examples/connect-grpc/cmd/server/main.go index 4212848..efa9f9f 100644 --- a/internal/examples/connect-grpc/cmd/server/main.go +++ b/internal/examples/connect-grpc/cmd/server/main.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/fileserver/main.go b/internal/examples/fileserver/main.go index b33ff10..eb54848 100644 --- a/internal/examples/fileserver/main.go +++ b/internal/examples/fileserver/main.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/pets/cmd/pets-be/main.go b/internal/examples/pets/cmd/pets-be/main.go index 1611aea..da979d9 100644 --- a/internal/examples/pets/cmd/pets-be/main.go +++ b/internal/examples/pets/cmd/pets-be/main.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/pets/cmd/pets-fe/main.go b/internal/examples/pets/cmd/pets-fe/main.go index 7c73179..db21f1e 100644 --- a/internal/examples/pets/cmd/pets-fe/main.go +++ b/internal/examples/pets/cmd/pets-fe/main.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go index aab59b6..d9d13a6 100644 --- a/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go +++ b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go index 0b751bc..e178453 100644 --- a/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go +++ b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto b/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto index 91bd85d..408159f 100644 --- a/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto +++ b/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/examples/pets/internal/trace.go b/internal/examples/pets/internal/trace.go index 5278449..790da37 100644 --- a/internal/examples/pets/internal/trace.go +++ b/internal/examples/pets/internal/trace.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/content.pb.go b/internal/gen/vanguard/test/v1/content.pb.go index a84d2c1..01675b2 100644 --- a/internal/gen/vanguard/test/v1/content.pb.go +++ b/internal/gen/vanguard/test/v1/content.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/content_grpc.pb.go b/internal/gen/vanguard/test/v1/content_grpc.pb.go index 5dbecc4..f34d0b4 100644 --- a/internal/gen/vanguard/test/v1/content_grpc.pb.go +++ b/internal/gen/vanguard/test/v1/content_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/library.pb.go b/internal/gen/vanguard/test/v1/library.pb.go index a973acd..1e76d7b 100644 --- a/internal/gen/vanguard/test/v1/library.pb.go +++ b/internal/gen/vanguard/test/v1/library.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/library_grpc.pb.go b/internal/gen/vanguard/test/v1/library_grpc.pb.go index fff4084..930ee86 100644 --- a/internal/gen/vanguard/test/v1/library_grpc.pb.go +++ b/internal/gen/vanguard/test/v1/library_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/test.pb.go b/internal/gen/vanguard/test/v1/test.pb.go index b4ec655..1fdb86e 100644 --- a/internal/gen/vanguard/test/v1/test.pb.go +++ b/internal/gen/vanguard/test/v1/test.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/testv1connect/content.connect.go b/internal/gen/vanguard/test/v1/testv1connect/content.connect.go index 456b29a..49b2d80 100644 --- a/internal/gen/vanguard/test/v1/testv1connect/content.connect.go +++ b/internal/gen/vanguard/test/v1/testv1connect/content.connect.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/gen/vanguard/test/v1/testv1connect/library.connect.go b/internal/gen/vanguard/test/v1/testv1connect/library.connect.go index dc6df69..e5ae9bd 100644 --- a/internal/gen/vanguard/test/v1/testv1connect/library.connect.go +++ b/internal/gen/vanguard/test/v1/testv1connect/library.connect.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/proto/vanguard/test/v1/content.proto b/internal/proto/vanguard/test/v1/content.proto index 35a4a1c..eed05d0 100644 --- a/internal/proto/vanguard/test/v1/content.proto +++ b/internal/proto/vanguard/test/v1/content.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/proto/vanguard/test/v1/library.proto b/internal/proto/vanguard/test/v1/library.proto index 4cf5c17..be3a648 100644 --- a/internal/proto/vanguard/test/v1/library.proto +++ b/internal/proto/vanguard/test/v1/library.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/internal/proto/vanguard/test/v1/test.proto b/internal/proto/vanguard/test/v1/test.proto index 41d4c76..a69fccc 100644 --- a/internal/proto/vanguard/test/v1/test.proto +++ b/internal/proto/vanguard/test/v1/test.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/params.go b/params.go index 566a728..eddcab7 100644 --- a/params.go +++ b/params.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/params_test.go b/params_test.go index bbc43e3..1dec785 100644 --- a/params_test.go +++ b/params_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/path_parser.go b/path_parser.go index ae24cac..96958fa 100644 --- a/path_parser.go +++ b/path_parser.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/path_parser_test.go b/path_parser_test.go index 48229c2..114e747 100644 --- a/path_parser_test.go +++ b/path_parser_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/path_scanner.go b/path_scanner.go index ba75571..fcb22b4 100644 --- a/path_scanner.go +++ b/path_scanner.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol.go b/protocol.go index 9ad131b..c126088 100644 --- a/protocol.go +++ b/protocol.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_connect.go b/protocol_connect.go index 979c7b7..8ac65e0 100644 --- a/protocol_connect.go +++ b/protocol_connect.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_grpc.go b/protocol_grpc.go index 630b84d..ea4ae2d 100644 --- a/protocol_grpc.go +++ b/protocol_grpc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_grpc_test.go b/protocol_grpc_test.go index bed9d4d..3e7cfc5 100644 --- a/protocol_grpc_test.go +++ b/protocol_grpc_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_http.go b/protocol_http.go index 4d2d639..0b4ab9b 100644 --- a/protocol_http.go +++ b/protocol_http.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_http_test.go b/protocol_http_test.go index acc3ba0..3aafa42 100644 --- a/protocol_http_test.go +++ b/protocol_http_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_rest.go b/protocol_rest.go index a101481..cc14040 100644 --- a/protocol_rest.go +++ b/protocol_rest.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/protocol_test.go b/protocol_test.go index 489d255..f825c5b 100644 --- a/protocol_test.go +++ b/protocol_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/router.go b/router.go index 883a4d6..bae0e05 100644 --- a/router.go +++ b/router.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/router_test.go b/router_test.go index 6a32325..233d35f 100644 --- a/router_test.go +++ b/router_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/transcoder.go b/transcoder.go index fb7a74e..bac693d 100644 --- a/transcoder.go +++ b/transcoder.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/transcoder_bench_test.go b/transcoder_bench_test.go index 549cd23..3208d2c 100644 --- a/transcoder_bench_test.go +++ b/transcoder_bench_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/transcoder_test.go b/transcoder_test.go index 35fd9ad..220ab76 100644 --- a/transcoder_test.go +++ b/transcoder_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguard.go b/vanguard.go index f26acfe..519fc2c 100644 --- a/vanguard.go +++ b/vanguard.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguard_examples_test.go b/vanguard_examples_test.go index 3db4f5b..3bf34b5 100644 --- a/vanguard_examples_test.go +++ b/vanguard_examples_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguard_restxrpc_test.go b/vanguard_restxrpc_test.go index 9f1cac9..316ca38 100644 --- a/vanguard_restxrpc_test.go +++ b/vanguard_restxrpc_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguard_rpcxrest_test.go b/vanguard_rpcxrest_test.go index 611ac70..918dbac 100644 --- a/vanguard_rpcxrest_test.go +++ b/vanguard_rpcxrest_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguard_rpcxrpc_test.go b/vanguard_rpcxrpc_test.go index 191c6d4..3ef68d9 100644 --- a/vanguard_rpcxrpc_test.go +++ b/vanguard_rpcxrpc_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguard_test.go b/vanguard_test.go index 5f2286d..af0f9f4 100644 --- a/vanguard_test.go +++ b/vanguard_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguardgrpc/vanguardgrpc.go b/vanguardgrpc/vanguardgrpc.go index 46a397c..7966f42 100644 --- a/vanguardgrpc/vanguardgrpc.go +++ b/vanguardgrpc/vanguardgrpc.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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/vanguardgrpc/vanguardgrpc_examples_test.go b/vanguardgrpc/vanguardgrpc_examples_test.go index c526330..7d4576a 100644 --- a/vanguardgrpc/vanguardgrpc_examples_test.go +++ b/vanguardgrpc/vanguardgrpc_examples_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2024 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. From 56a51aa1f4ed0171dd92c61368ad5ee0c2bfaec1 Mon Sep 17 00:00:00 2001 From: Edward McFarlane <3036610+emcfarlane@users.noreply.github.com> Date: Wed, 10 Jan 2024 17:01:19 +0100 Subject: [PATCH 2/3] Update Makefile Co-authored-by: Joshua Humphries <2035234+jhump@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88d09ef..89ea4a0 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 := 2024 +COPYRIGHT_YEARS := 2023-2024 LICENSE_IGNORE := -e testdata/ # Set to use a different compiler. For example, `GO=go1.18rc1 make test`. GO ?= go From f799d10c16944c25b5c23f59ddba04c512c40767 Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Wed, 10 Jan 2024 17:02:11 +0100 Subject: [PATCH 3/3] Regen --- buffer_pool.go | 2 +- codec.go | 2 +- codec_test.go | 2 +- compression.go | 2 +- errors.go | 2 +- internal/examples/connect-grpc/cmd/client/main.go | 2 +- internal/examples/connect-grpc/cmd/server/main.go | 2 +- internal/examples/fileserver/main.go | 2 +- internal/examples/pets/cmd/pets-be/main.go | 2 +- internal/examples/pets/cmd/pets-fe/main.go | 2 +- .../pets/internal/gen/io/swagger/petstore/v2/pets.pb.go | 2 +- .../io/swagger/petstore/v2/petstorev2connect/pets.connect.go | 2 +- .../pets/internal/proto/io/swagger/petstore/v2/pets.proto | 2 +- internal/examples/pets/internal/trace.go | 2 +- internal/gen/vanguard/test/v1/content.pb.go | 2 +- internal/gen/vanguard/test/v1/content_grpc.pb.go | 2 +- internal/gen/vanguard/test/v1/library.pb.go | 2 +- internal/gen/vanguard/test/v1/library_grpc.pb.go | 2 +- internal/gen/vanguard/test/v1/test.pb.go | 2 +- internal/gen/vanguard/test/v1/testv1connect/content.connect.go | 2 +- internal/gen/vanguard/test/v1/testv1connect/library.connect.go | 2 +- internal/proto/vanguard/test/v1/content.proto | 2 +- internal/proto/vanguard/test/v1/library.proto | 2 +- internal/proto/vanguard/test/v1/test.proto | 2 +- params.go | 2 +- params_test.go | 2 +- path_parser.go | 2 +- path_parser_test.go | 2 +- path_scanner.go | 2 +- protocol.go | 2 +- protocol_connect.go | 2 +- protocol_grpc.go | 2 +- protocol_grpc_test.go | 2 +- protocol_http.go | 2 +- protocol_http_test.go | 2 +- protocol_rest.go | 2 +- protocol_test.go | 2 +- router.go | 2 +- router_test.go | 2 +- transcoder.go | 2 +- transcoder_bench_test.go | 2 +- transcoder_test.go | 2 +- vanguard.go | 2 +- vanguard_examples_test.go | 2 +- vanguard_restxrpc_test.go | 2 +- vanguard_rpcxrest_test.go | 2 +- vanguard_rpcxrpc_test.go | 2 +- vanguard_test.go | 2 +- vanguardgrpc/vanguardgrpc.go | 2 +- vanguardgrpc/vanguardgrpc_examples_test.go | 2 +- 50 files changed, 50 insertions(+), 50 deletions(-) diff --git a/buffer_pool.go b/buffer_pool.go index 25acf97..f33bd95 100644 --- a/buffer_pool.go +++ b/buffer_pool.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/codec.go b/codec.go index 6163c4c..72996ea 100644 --- a/codec.go +++ b/codec.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/codec_test.go b/codec_test.go index 19942a8..98abdef 100644 --- a/codec_test.go +++ b/codec_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/compression.go b/compression.go index 6c654dd..ff4d263 100644 --- a/compression.go +++ b/compression.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/errors.go b/errors.go index 6fe4cc7..a0f9bde 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/connect-grpc/cmd/client/main.go b/internal/examples/connect-grpc/cmd/client/main.go index d22e3c7..5975520 100644 --- a/internal/examples/connect-grpc/cmd/client/main.go +++ b/internal/examples/connect-grpc/cmd/client/main.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/connect-grpc/cmd/server/main.go b/internal/examples/connect-grpc/cmd/server/main.go index efa9f9f..8b59bac 100644 --- a/internal/examples/connect-grpc/cmd/server/main.go +++ b/internal/examples/connect-grpc/cmd/server/main.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/fileserver/main.go b/internal/examples/fileserver/main.go index eb54848..0b6600f 100644 --- a/internal/examples/fileserver/main.go +++ b/internal/examples/fileserver/main.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/pets/cmd/pets-be/main.go b/internal/examples/pets/cmd/pets-be/main.go index da979d9..89852c3 100644 --- a/internal/examples/pets/cmd/pets-be/main.go +++ b/internal/examples/pets/cmd/pets-be/main.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/pets/cmd/pets-fe/main.go b/internal/examples/pets/cmd/pets-fe/main.go index db21f1e..32275b0 100644 --- a/internal/examples/pets/cmd/pets-fe/main.go +++ b/internal/examples/pets/cmd/pets-fe/main.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go index d9d13a6..fc67be4 100644 --- a/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go +++ b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/pets.pb.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go index e178453..f83aa5d 100644 --- a/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go +++ b/internal/examples/pets/internal/gen/io/swagger/petstore/v2/petstorev2connect/pets.connect.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto b/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto index 408159f..bd2ca4a 100644 --- a/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto +++ b/internal/examples/pets/internal/proto/io/swagger/petstore/v2/pets.proto @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/examples/pets/internal/trace.go b/internal/examples/pets/internal/trace.go index 790da37..9462c55 100644 --- a/internal/examples/pets/internal/trace.go +++ b/internal/examples/pets/internal/trace.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/content.pb.go b/internal/gen/vanguard/test/v1/content.pb.go index 01675b2..b6f7ff8 100644 --- a/internal/gen/vanguard/test/v1/content.pb.go +++ b/internal/gen/vanguard/test/v1/content.pb.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/content_grpc.pb.go b/internal/gen/vanguard/test/v1/content_grpc.pb.go index f34d0b4..46351ee 100644 --- a/internal/gen/vanguard/test/v1/content_grpc.pb.go +++ b/internal/gen/vanguard/test/v1/content_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/library.pb.go b/internal/gen/vanguard/test/v1/library.pb.go index 1e76d7b..9cbb61e 100644 --- a/internal/gen/vanguard/test/v1/library.pb.go +++ b/internal/gen/vanguard/test/v1/library.pb.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/library_grpc.pb.go b/internal/gen/vanguard/test/v1/library_grpc.pb.go index 930ee86..9f46bb4 100644 --- a/internal/gen/vanguard/test/v1/library_grpc.pb.go +++ b/internal/gen/vanguard/test/v1/library_grpc.pb.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/test.pb.go b/internal/gen/vanguard/test/v1/test.pb.go index 1fdb86e..fec181d 100644 --- a/internal/gen/vanguard/test/v1/test.pb.go +++ b/internal/gen/vanguard/test/v1/test.pb.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/testv1connect/content.connect.go b/internal/gen/vanguard/test/v1/testv1connect/content.connect.go index 49b2d80..300c13f 100644 --- a/internal/gen/vanguard/test/v1/testv1connect/content.connect.go +++ b/internal/gen/vanguard/test/v1/testv1connect/content.connect.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/gen/vanguard/test/v1/testv1connect/library.connect.go b/internal/gen/vanguard/test/v1/testv1connect/library.connect.go index e5ae9bd..66088a9 100644 --- a/internal/gen/vanguard/test/v1/testv1connect/library.connect.go +++ b/internal/gen/vanguard/test/v1/testv1connect/library.connect.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/proto/vanguard/test/v1/content.proto b/internal/proto/vanguard/test/v1/content.proto index eed05d0..5fef8fd 100644 --- a/internal/proto/vanguard/test/v1/content.proto +++ b/internal/proto/vanguard/test/v1/content.proto @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/proto/vanguard/test/v1/library.proto b/internal/proto/vanguard/test/v1/library.proto index be3a648..5bf5b9f 100644 --- a/internal/proto/vanguard/test/v1/library.proto +++ b/internal/proto/vanguard/test/v1/library.proto @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/internal/proto/vanguard/test/v1/test.proto b/internal/proto/vanguard/test/v1/test.proto index a69fccc..36b2c5b 100644 --- a/internal/proto/vanguard/test/v1/test.proto +++ b/internal/proto/vanguard/test/v1/test.proto @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/params.go b/params.go index eddcab7..bf4088e 100644 --- a/params.go +++ b/params.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/params_test.go b/params_test.go index 1dec785..ed41c2e 100644 --- a/params_test.go +++ b/params_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/path_parser.go b/path_parser.go index 96958fa..8d71d20 100644 --- a/path_parser.go +++ b/path_parser.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/path_parser_test.go b/path_parser_test.go index 114e747..2b4a05f 100644 --- a/path_parser_test.go +++ b/path_parser_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/path_scanner.go b/path_scanner.go index fcb22b4..6abb934 100644 --- a/path_scanner.go +++ b/path_scanner.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol.go b/protocol.go index c126088..ec82441 100644 --- a/protocol.go +++ b/protocol.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_connect.go b/protocol_connect.go index 8ac65e0..d36f31d 100644 --- a/protocol_connect.go +++ b/protocol_connect.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_grpc.go b/protocol_grpc.go index ea4ae2d..c78ba97 100644 --- a/protocol_grpc.go +++ b/protocol_grpc.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_grpc_test.go b/protocol_grpc_test.go index 3e7cfc5..af297bd 100644 --- a/protocol_grpc_test.go +++ b/protocol_grpc_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_http.go b/protocol_http.go index 0b4ab9b..bea62ad 100644 --- a/protocol_http.go +++ b/protocol_http.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_http_test.go b/protocol_http_test.go index 3aafa42..f57685c 100644 --- a/protocol_http_test.go +++ b/protocol_http_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_rest.go b/protocol_rest.go index cc14040..4e4045e 100644 --- a/protocol_rest.go +++ b/protocol_rest.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/protocol_test.go b/protocol_test.go index f825c5b..d275182 100644 --- a/protocol_test.go +++ b/protocol_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/router.go b/router.go index bae0e05..742edb0 100644 --- a/router.go +++ b/router.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/router_test.go b/router_test.go index 233d35f..904eb2e 100644 --- a/router_test.go +++ b/router_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/transcoder.go b/transcoder.go index bac693d..52e85ab 100644 --- a/transcoder.go +++ b/transcoder.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/transcoder_bench_test.go b/transcoder_bench_test.go index 3208d2c..8211b48 100644 --- a/transcoder_bench_test.go +++ b/transcoder_bench_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/transcoder_test.go b/transcoder_test.go index 220ab76..e629912 100644 --- a/transcoder_test.go +++ b/transcoder_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguard.go b/vanguard.go index 519fc2c..8729cdb 100644 --- a/vanguard.go +++ b/vanguard.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguard_examples_test.go b/vanguard_examples_test.go index 3bf34b5..0eaefed 100644 --- a/vanguard_examples_test.go +++ b/vanguard_examples_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguard_restxrpc_test.go b/vanguard_restxrpc_test.go index 316ca38..be9eb81 100644 --- a/vanguard_restxrpc_test.go +++ b/vanguard_restxrpc_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguard_rpcxrest_test.go b/vanguard_rpcxrest_test.go index 918dbac..e1379a8 100644 --- a/vanguard_rpcxrest_test.go +++ b/vanguard_rpcxrest_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguard_rpcxrpc_test.go b/vanguard_rpcxrpc_test.go index 3ef68d9..3f1a149 100644 --- a/vanguard_rpcxrpc_test.go +++ b/vanguard_rpcxrpc_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguard_test.go b/vanguard_test.go index af0f9f4..f42a5f2 100644 --- a/vanguard_test.go +++ b/vanguard_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguardgrpc/vanguardgrpc.go b/vanguardgrpc/vanguardgrpc.go index 7966f42..bde6aa1 100644 --- a/vanguardgrpc/vanguardgrpc.go +++ b/vanguardgrpc/vanguardgrpc.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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/vanguardgrpc/vanguardgrpc_examples_test.go b/vanguardgrpc/vanguardgrpc_examples_test.go index 7d4576a..e8a90ab 100644 --- a/vanguardgrpc/vanguardgrpc_examples_test.go +++ b/vanguardgrpc/vanguardgrpc_examples_test.go @@ -1,4 +1,4 @@ -// Copyright 2024 Buf Technologies, Inc. +// Copyright 2023-2024 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.