From a015d8fe1e7d757c07fa14d81a7c374b6570fef7 Mon Sep 17 00:00:00 2001 From: skywhat Date: Wed, 22 Apr 2020 17:20:44 -0700 Subject: [PATCH] Update the copyright messages to 2020 (#439) --- CHANGELOG.md | 2 +- LICENSE.txt | 2 +- client.go | 2 +- client_local_test.go | 2 +- client_test.go | 2 +- cmd/doc.go | 2 +- cmd/dosa/capture_test.go | 2 +- cmd/dosa/client.go | 2 +- cmd/dosa/client_test.go | 2 +- cmd/dosa/doc.go | 2 +- cmd/dosa/headers.go | 2 +- cmd/dosa/main.go | 2 +- cmd/dosa/main_test.go | 2 +- cmd/dosa/options.go | 2 +- cmd/dosa/options_test.go | 2 +- cmd/dosa/query.go | 2 +- cmd/dosa/query_test.go | 2 +- cmd/dosa/range.go | 2 +- cmd/dosa/range_test.go | 2 +- cmd/dosa/read.go | 2 +- cmd/dosa/read_test.go | 2 +- cmd/dosa/registrar.go | 2 +- cmd/dosa/registrar_test.go | 2 +- cmd/dosa/schema.go | 2 +- cmd/dosa/schema_test.go | 2 +- cmd/dosa/scope.go | 2 +- cmd/dosa/scope_test.go | 2 +- cmd/dosa/scopemd.go | 2 +- cmd/dosa/scopemd_test.go | 2 +- cmd/dosa/util.go | 2 +- cmd/dosa/util_test.go | 2 +- conditioner.go | 2 +- conditioner_test.go | 2 +- connector.go | 2 +- connectors/base/base.go | 2 +- connectors/base/base_test.go | 2 +- connectors/cache/fallback.go | 2 +- connectors/cache/fallback_test.go | 2 +- connectors/devnull/devnull.go | 2 +- connectors/devnull/devnull_test.go | 2 +- connectors/doc.go | 2 +- connectors/memory/memory.go | 2 +- connectors/memory/memory_test.go | 2 +- connectors/random/random.go | 2 +- connectors/random/random_test.go | 2 +- connectors/redis/redigo.go | 2 +- connectors/redis/redigo_test.go | 2 +- connectors/redis/redis.go | 2 +- connectors/redis/redis_test.go | 2 +- connectors/redis/util.go | 2 +- connectors/routing/config.go | 2 +- connectors/routing/config_test.go | 2 +- connectors/routing/connector.go | 2 +- connectors/routing/connector_test.go | 2 +- connectors/routing/resolver.go | 2 +- connectors/routing/routing_config.go | 2 +- connectors/routing/routing_config_test.go | 2 +- connectors/yarpc/client.go | 2 +- connectors/yarpc/helpers.go | 2 +- connectors/yarpc/helpers_test.go | 2 +- connectors/yarpc/yarpc.go | 2 +- connectors/yarpc/yarpc_test.go | 2 +- doc.go | 2 +- encoding/encoding.go | 2 +- encoding/encoding_test.go | 2 +- entity.go | 2 +- entity_parser.go | 2 +- entity_parser_index_test.go | 2 +- entity_parser_key_parser_test.go | 2 +- entity_parser_test.go | 2 +- entity_test.go | 2 +- errors.go | 2 +- etl.go | 2 +- etl_test.go | 2 +- examples/doc.go | 2 +- examples/testing/doc.go | 2 +- examples/testing/testing.go | 2 +- examples/testing/testing_test.go | 2 +- finder.go | 2 +- finder_test.go | 2 +- metrics/metrics.go | 2 +- metrics/noops.go | 2 +- metrics/noops_test.go | 2 +- mocks/client.go | 2 +- mocks/connector.go | 2 +- mocks/doc.go | 2 +- mocks/metrics.go | 2 +- names.go | 2 +- names_test.go | 2 +- pager.go | 2 +- range.go | 2 +- range_conditions.go | 2 +- range_conditions_test.go | 2 +- range_conditions_wb_test.go | 2 +- range_test.go | 2 +- registrar.go | 2 +- registrar_test.go | 2 +- remove_range.go | 2 +- remove_range_test.go | 2 +- scan.go | 2 +- scan_test.go | 2 +- schema/avro/avro.go | 2 +- schema/avro/avro_test.go | 2 +- schema/cql/cql.go | 2 +- schema/cql/cql_test.go | 2 +- schema/uql/uql.go | 2 +- schema/uql/uql_test.go | 2 +- testclient/testclient.go | 2 +- testclient/testclient_test.go | 2 +- testentity/keyvalue.go | 2 +- testentity/named_import_testentity.go | 2 +- testentity/testentity.go | 2 +- testutil/generator.go | 2 +- testutil/portcheck.go | 2 +- ttl.go | 2 +- type.go | 2 +- type_string.go | 2 +- type_test.go | 2 +- user.go | 2 +- user_test.go | 2 +- version.go | 2 +- 121 files changed, 121 insertions(+), 121 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edcd3034..0ba5e10c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog ## v3.4.24 (unreleased) - - no changes yet. + - Update the copyright messages to 2020. ## v3.4.23 (2020-04-22) - Do not discard errors returned by the Gateway (for Read and CreateIfNotExists). diff --git a/LICENSE.txt b/LICENSE.txt index e27f665e..8596d692 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2019 Uber Technologies, Inc. +Copyright (c) 2020 Uber Technologies, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/client.go b/client.go index eaf625b2..89f36a04 100644 --- a/client.go +++ b/client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/client_local_test.go b/client_local_test.go index fccdf024..8513897d 100644 --- a/client_local_test.go +++ b/client_local_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/client_test.go b/client_test.go index a71824a5..06bebfde 100644 --- a/client_test.go +++ b/client_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/doc.go b/cmd/doc.go index 258976fb..4be88f4a 100644 --- a/cmd/doc.go +++ b/cmd/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/capture_test.go b/cmd/dosa/capture_test.go index 542220a1..57285a92 100644 --- a/cmd/dosa/capture_test.go +++ b/cmd/dosa/capture_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/client.go b/cmd/dosa/client.go index 02789862..62a02762 100644 --- a/cmd/dosa/client.go +++ b/cmd/dosa/client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/client_test.go b/cmd/dosa/client_test.go index 91a6c652..04495889 100644 --- a/cmd/dosa/client_test.go +++ b/cmd/dosa/client_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/doc.go b/cmd/dosa/doc.go index c8440926..129e8aec 100644 --- a/cmd/dosa/doc.go +++ b/cmd/dosa/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/headers.go b/cmd/dosa/headers.go index 8e70b969..cf39001f 100644 --- a/cmd/dosa/headers.go +++ b/cmd/dosa/headers.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/main.go b/cmd/dosa/main.go index 314a8d0f..6a705811 100644 --- a/cmd/dosa/main.go +++ b/cmd/dosa/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/main_test.go b/cmd/dosa/main_test.go index ba84c29d..f7759c20 100644 --- a/cmd/dosa/main_test.go +++ b/cmd/dosa/main_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/options.go b/cmd/dosa/options.go index 99e848ba..7f317e86 100644 --- a/cmd/dosa/options.go +++ b/cmd/dosa/options.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/options_test.go b/cmd/dosa/options_test.go index 184758c4..0c2df3f6 100644 --- a/cmd/dosa/options_test.go +++ b/cmd/dosa/options_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/query.go b/cmd/dosa/query.go index 86419e51..8ec90dfa 100644 --- a/cmd/dosa/query.go +++ b/cmd/dosa/query.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/query_test.go b/cmd/dosa/query_test.go index 79f1c512..ba5fccb8 100644 --- a/cmd/dosa/query_test.go +++ b/cmd/dosa/query_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/range.go b/cmd/dosa/range.go index 19aa6d70..1bee2471 100644 --- a/cmd/dosa/range.go +++ b/cmd/dosa/range.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/range_test.go b/cmd/dosa/range_test.go index dc0acba7..318ae83a 100644 --- a/cmd/dosa/range_test.go +++ b/cmd/dosa/range_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/read.go b/cmd/dosa/read.go index 11857009..fdf7bc7f 100644 --- a/cmd/dosa/read.go +++ b/cmd/dosa/read.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/read_test.go b/cmd/dosa/read_test.go index 7974e1eb..21e70585 100644 --- a/cmd/dosa/read_test.go +++ b/cmd/dosa/read_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/registrar.go b/cmd/dosa/registrar.go index 8e5a0984..7020f5d1 100644 --- a/cmd/dosa/registrar.go +++ b/cmd/dosa/registrar.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/registrar_test.go b/cmd/dosa/registrar_test.go index 21016bb0..5c6271fc 100644 --- a/cmd/dosa/registrar_test.go +++ b/cmd/dosa/registrar_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/schema.go b/cmd/dosa/schema.go index 14d5378f..734211d9 100644 --- a/cmd/dosa/schema.go +++ b/cmd/dosa/schema.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/schema_test.go b/cmd/dosa/schema_test.go index 71c3ec3a..c6daebaa 100644 --- a/cmd/dosa/schema_test.go +++ b/cmd/dosa/schema_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/scope.go b/cmd/dosa/scope.go index 5001a269..50461d7a 100644 --- a/cmd/dosa/scope.go +++ b/cmd/dosa/scope.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/scope_test.go b/cmd/dosa/scope_test.go index 5386b2d7..48ba0f7f 100644 --- a/cmd/dosa/scope_test.go +++ b/cmd/dosa/scope_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/scopemd.go b/cmd/dosa/scopemd.go index a39260bd..09a2acb4 100644 --- a/cmd/dosa/scopemd.go +++ b/cmd/dosa/scopemd.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/scopemd_test.go b/cmd/dosa/scopemd_test.go index 2f06c651..70cda5e3 100644 --- a/cmd/dosa/scopemd_test.go +++ b/cmd/dosa/scopemd_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/util.go b/cmd/dosa/util.go index bacfb0b5..1d84015d 100644 --- a/cmd/dosa/util.go +++ b/cmd/dosa/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/cmd/dosa/util_test.go b/cmd/dosa/util_test.go index 7334cef2..6d0f9141 100644 --- a/cmd/dosa/util_test.go +++ b/cmd/dosa/util_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/conditioner.go b/conditioner.go index aa22d0d1..4a30dc38 100644 --- a/conditioner.go +++ b/conditioner.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/conditioner_test.go b/conditioner_test.go index 30bc9e2b..7eb01854 100644 --- a/conditioner_test.go +++ b/conditioner_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connector.go b/connector.go index 641bf123..238a6906 100644 --- a/connector.go +++ b/connector.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/base/base.go b/connectors/base/base.go index b8a9f446..fe2ebbd2 100644 --- a/connectors/base/base.go +++ b/connectors/base/base.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/base/base_test.go b/connectors/base/base_test.go index e0f8fa01..971b9c56 100644 --- a/connectors/base/base_test.go +++ b/connectors/base/base_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/cache/fallback.go b/connectors/cache/fallback.go index 51fee6a1..93f8093f 100644 --- a/connectors/cache/fallback.go +++ b/connectors/cache/fallback.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/cache/fallback_test.go b/connectors/cache/fallback_test.go index df9d246a..e16ddb67 100644 --- a/connectors/cache/fallback_test.go +++ b/connectors/cache/fallback_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/devnull/devnull.go b/connectors/devnull/devnull.go index 88cd72e3..08a231bc 100644 --- a/connectors/devnull/devnull.go +++ b/connectors/devnull/devnull.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/devnull/devnull_test.go b/connectors/devnull/devnull_test.go index b3de4211..2efcda09 100644 --- a/connectors/devnull/devnull_test.go +++ b/connectors/devnull/devnull_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/doc.go b/connectors/doc.go index 85830374..31ffe792 100644 --- a/connectors/doc.go +++ b/connectors/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/memory/memory.go b/connectors/memory/memory.go index 7b40786b..be6e4d25 100644 --- a/connectors/memory/memory.go +++ b/connectors/memory/memory.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/memory/memory_test.go b/connectors/memory/memory_test.go index 04ffdd1e..49fc8ecf 100644 --- a/connectors/memory/memory_test.go +++ b/connectors/memory/memory_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/random/random.go b/connectors/random/random.go index f03e7665..746ff1c8 100644 --- a/connectors/random/random.go +++ b/connectors/random/random.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/random/random_test.go b/connectors/random/random_test.go index 6d5fdd18..b48abc91 100644 --- a/connectors/random/random_test.go +++ b/connectors/random/random_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/redis/redigo.go b/connectors/redis/redigo.go index e4f1945c..b31456ac 100644 --- a/connectors/redis/redigo.go +++ b/connectors/redis/redigo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/redis/redigo_test.go b/connectors/redis/redigo_test.go index f183cfcb..2e904462 100644 --- a/connectors/redis/redigo_test.go +++ b/connectors/redis/redigo_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/redis/redis.go b/connectors/redis/redis.go index 8082981e..76f135f3 100644 --- a/connectors/redis/redis.go +++ b/connectors/redis/redis.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/redis/redis_test.go b/connectors/redis/redis_test.go index 7aa0c44b..49854702 100644 --- a/connectors/redis/redis_test.go +++ b/connectors/redis/redis_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/redis/util.go b/connectors/redis/util.go index 7ea67f08..6f6a17d5 100644 --- a/connectors/redis/util.go +++ b/connectors/redis/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/config.go b/connectors/routing/config.go index 7161d9cc..cb1222f8 100644 --- a/connectors/routing/config.go +++ b/connectors/routing/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/config_test.go b/connectors/routing/config_test.go index 363f2862..9ea4622d 100644 --- a/connectors/routing/config_test.go +++ b/connectors/routing/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/connector.go b/connectors/routing/connector.go index 055f970e..8539da24 100644 --- a/connectors/routing/connector.go +++ b/connectors/routing/connector.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/connector_test.go b/connectors/routing/connector_test.go index 01e5f383..22d45798 100644 --- a/connectors/routing/connector_test.go +++ b/connectors/routing/connector_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/resolver.go b/connectors/routing/resolver.go index a2229cef..459588c4 100644 --- a/connectors/routing/resolver.go +++ b/connectors/routing/resolver.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/routing_config.go b/connectors/routing/routing_config.go index f5d8c301..f6c71e1e 100644 --- a/connectors/routing/routing_config.go +++ b/connectors/routing/routing_config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/routing/routing_config_test.go b/connectors/routing/routing_config_test.go index a1dd74be..2d02285f 100644 --- a/connectors/routing/routing_config_test.go +++ b/connectors/routing/routing_config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/yarpc/client.go b/connectors/yarpc/client.go index 11574170..ced769ec 100644 --- a/connectors/yarpc/client.go +++ b/connectors/yarpc/client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/yarpc/helpers.go b/connectors/yarpc/helpers.go index dc261088..724008c9 100644 --- a/connectors/yarpc/helpers.go +++ b/connectors/yarpc/helpers.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/yarpc/helpers_test.go b/connectors/yarpc/helpers_test.go index a84894d2..f9963c2a 100644 --- a/connectors/yarpc/helpers_test.go +++ b/connectors/yarpc/helpers_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/yarpc/yarpc.go b/connectors/yarpc/yarpc.go index dbcfb9f3..fffb4c65 100644 --- a/connectors/yarpc/yarpc.go +++ b/connectors/yarpc/yarpc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/connectors/yarpc/yarpc_test.go b/connectors/yarpc/yarpc_test.go index 9188b92b..e389276f 100644 --- a/connectors/yarpc/yarpc_test.go +++ b/connectors/yarpc/yarpc_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/doc.go b/doc.go index b963de21..ae62821d 100644 --- a/doc.go +++ b/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/encoding.go b/encoding/encoding.go index a0b9c025..55513ca6 100644 --- a/encoding/encoding.go +++ b/encoding/encoding.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/encoding_test.go b/encoding/encoding_test.go index 4c30b083..b816fac8 100644 --- a/encoding/encoding_test.go +++ b/encoding/encoding_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/entity.go b/entity.go index 30814522..fccdc69c 100644 --- a/entity.go +++ b/entity.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/entity_parser.go b/entity_parser.go index f15028a8..b3edf554 100644 --- a/entity_parser.go +++ b/entity_parser.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/entity_parser_index_test.go b/entity_parser_index_test.go index 93f25afa..0b90d7d8 100644 --- a/entity_parser_index_test.go +++ b/entity_parser_index_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/entity_parser_key_parser_test.go b/entity_parser_key_parser_test.go index 7a9f1a02..eceaac5c 100644 --- a/entity_parser_key_parser_test.go +++ b/entity_parser_key_parser_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/entity_parser_test.go b/entity_parser_test.go index 8538a8e4..4c6c808a 100644 --- a/entity_parser_test.go +++ b/entity_parser_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/entity_test.go b/entity_test.go index a2504645..f4986b93 100644 --- a/entity_test.go +++ b/entity_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/errors.go b/errors.go index 7375e344..6f89d290 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/etl.go b/etl.go index 44f91b55..90cda948 100644 --- a/etl.go +++ b/etl.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/etl_test.go b/etl_test.go index 15fcfbba..c238b2dd 100644 --- a/etl_test.go +++ b/etl_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/doc.go b/examples/doc.go index 8a4f2d34..aef092df 100644 --- a/examples/doc.go +++ b/examples/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/testing/doc.go b/examples/testing/doc.go index 0627ed8a..54322c47 100644 --- a/examples/testing/doc.go +++ b/examples/testing/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/testing/testing.go b/examples/testing/testing.go index b81ef8b5..5277e5bd 100644 --- a/examples/testing/testing.go +++ b/examples/testing/testing.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/testing/testing_test.go b/examples/testing/testing_test.go index 0c84b128..1c257f4d 100644 --- a/examples/testing/testing_test.go +++ b/examples/testing/testing_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/finder.go b/finder.go index 77ea8a2d..a290dcc5 100644 --- a/finder.go +++ b/finder.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/finder_test.go b/finder_test.go index 4eb249f5..2ae6e277 100644 --- a/finder_test.go +++ b/finder_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/metrics/metrics.go b/metrics/metrics.go index 92bda58c..2cfb3d09 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/metrics/noops.go b/metrics/noops.go index afd91b3b..44ad97e3 100644 --- a/metrics/noops.go +++ b/metrics/noops.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/metrics/noops_test.go b/metrics/noops_test.go index 2c41dcb9..c41f7da1 100644 --- a/metrics/noops_test.go +++ b/metrics/noops_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/mocks/client.go b/mocks/client.go index 8491cbf4..ef7da6e5 100644 --- a/mocks/client.go +++ b/mocks/client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/mocks/connector.go b/mocks/connector.go index ed4c61d9..6c464b41 100644 --- a/mocks/connector.go +++ b/mocks/connector.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/mocks/doc.go b/mocks/doc.go index c4b773cc..8e319ab9 100644 --- a/mocks/doc.go +++ b/mocks/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/mocks/metrics.go b/mocks/metrics.go index c80cfe55..1bc7871a 100644 --- a/mocks/metrics.go +++ b/mocks/metrics.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/names.go b/names.go index e95b638d..8f4d8877 100644 --- a/names.go +++ b/names.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/names_test.go b/names_test.go index 3c28ed4d..2f3c8793 100644 --- a/names_test.go +++ b/names_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pager.go b/pager.go index a8e9f9d2..96306ca2 100644 --- a/pager.go +++ b/pager.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/range.go b/range.go index 0cb8fae1..74a60d1e 100644 --- a/range.go +++ b/range.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/range_conditions.go b/range_conditions.go index 5d85985e..59552670 100644 --- a/range_conditions.go +++ b/range_conditions.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/range_conditions_test.go b/range_conditions_test.go index 2b4ff7e1..d0931283 100644 --- a/range_conditions_test.go +++ b/range_conditions_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/range_conditions_wb_test.go b/range_conditions_wb_test.go index cbd15469..dbcf07fc 100644 --- a/range_conditions_wb_test.go +++ b/range_conditions_wb_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/range_test.go b/range_test.go index 6a28a0d3..7d547df2 100644 --- a/range_test.go +++ b/range_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/registrar.go b/registrar.go index bba8606a..fd80de6f 100644 --- a/registrar.go +++ b/registrar.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/registrar_test.go b/registrar_test.go index 0d0136d7..b0c1a410 100644 --- a/registrar_test.go +++ b/registrar_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/remove_range.go b/remove_range.go index 267790ef..f3e0dcf5 100644 --- a/remove_range.go +++ b/remove_range.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/remove_range_test.go b/remove_range_test.go index db639b20..8c946684 100644 --- a/remove_range_test.go +++ b/remove_range_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/scan.go b/scan.go index 6b9a1d7a..69ad3a4a 100644 --- a/scan.go +++ b/scan.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/scan_test.go b/scan_test.go index 0aad8098..9b48bacf 100644 --- a/scan_test.go +++ b/scan_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/schema/avro/avro.go b/schema/avro/avro.go index a401748b..4d191d79 100644 --- a/schema/avro/avro.go +++ b/schema/avro/avro.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/schema/avro/avro_test.go b/schema/avro/avro_test.go index fb23fc2c..e1a1047d 100644 --- a/schema/avro/avro_test.go +++ b/schema/avro/avro_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/schema/cql/cql.go b/schema/cql/cql.go index aace0218..8182af05 100644 --- a/schema/cql/cql.go +++ b/schema/cql/cql.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/schema/cql/cql_test.go b/schema/cql/cql_test.go index a0c1e5d7..31e3bbc8 100644 --- a/schema/cql/cql_test.go +++ b/schema/cql/cql_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/schema/uql/uql.go b/schema/uql/uql.go index d140329b..62d1eabf 100644 --- a/schema/uql/uql.go +++ b/schema/uql/uql.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/schema/uql/uql_test.go b/schema/uql/uql_test.go index 45c1e794..74d5480f 100644 --- a/schema/uql/uql_test.go +++ b/schema/uql/uql_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testclient/testclient.go b/testclient/testclient.go index b8e13e44..44f29d65 100644 --- a/testclient/testclient.go +++ b/testclient/testclient.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testclient/testclient_test.go b/testclient/testclient_test.go index 506eb355..606d5d82 100644 --- a/testclient/testclient_test.go +++ b/testclient/testclient_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testentity/keyvalue.go b/testentity/keyvalue.go index bb0ba3cf..582f3951 100644 --- a/testentity/keyvalue.go +++ b/testentity/keyvalue.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testentity/named_import_testentity.go b/testentity/named_import_testentity.go index 04a667d0..4a622955 100644 --- a/testentity/named_import_testentity.go +++ b/testentity/named_import_testentity.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testentity/testentity.go b/testentity/testentity.go index b180b2ff..48ca46a4 100644 --- a/testentity/testentity.go +++ b/testentity/testentity.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testutil/generator.go b/testutil/generator.go index ee87146c..338d725c 100644 --- a/testutil/generator.go +++ b/testutil/generator.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/testutil/portcheck.go b/testutil/portcheck.go index ab2fea53..2600c703 100644 --- a/testutil/portcheck.go +++ b/testutil/portcheck.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/ttl.go b/ttl.go index daa99c1a..c35af009 100644 --- a/ttl.go +++ b/ttl.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/type.go b/type.go index e347a8fc..24ac7687 100644 --- a/type.go +++ b/type.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/type_string.go b/type_string.go index 8eea7afa..abbdc823 100644 --- a/type_string.go +++ b/type_string.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/type_test.go b/type_test.go index 90b8a7a1..5692cf8d 100644 --- a/type_test.go +++ b/type_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/user.go b/user.go index 8e13f5d9..0b3020bf 100644 --- a/user.go +++ b/user.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/user_test.go b/user_test.go index f75f0712..16c8e34c 100644 --- a/user_test.go +++ b/user_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/version.go b/version.go index b7fc58bb..2d7f3c7f 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 Uber Technologies, Inc. +// Copyright (c) 2020 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal