From d84a8872882f0972c43d547f3acac7a2d4feff5e Mon Sep 17 00:00:00 2001 From: Jai Radhakrishnan <55522316+jairad26@users.noreply.github.com> Date: Thu, 2 Jan 2025 16:14:53 -0800 Subject: [PATCH 1/3] add copyrights --- api.go | 6 ++++++ api_dql.go | 6 ++++++ api_mutate_helper.go | 6 ++++++ api_query_helper.go | 6 ++++++ api_reflect.go | 6 ++++++ api_test.go | 6 ++++++ api_types.go | 6 ++++++ config.go | 6 ++++++ db.go | 6 ++++++ db_test.go | 6 ++++++ live.go | 6 ++++++ live_benchmark_test.go | 6 ++++++ live_test.go | 6 ++++++ namespace.go | 6 ++++++ namespace_test.go | 6 ++++++ utils.go | 6 ++++++ vector_test.go | 6 ++++++ zero.go | 6 ++++++ 18 files changed, 108 insertions(+) diff --git a/api.go b/api.go index e329198..d7611b5 100644 --- a/api.go +++ b/api.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/api_dql.go b/api_dql.go index b20ecf0..f56759e 100644 --- a/api_dql.go +++ b/api_dql.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/api_mutate_helper.go b/api_mutate_helper.go index 3d381c1..c90931f 100644 --- a/api_mutate_helper.go +++ b/api_mutate_helper.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/api_query_helper.go b/api_query_helper.go index a277d79..7beda92 100644 --- a/api_query_helper.go +++ b/api_query_helper.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/api_reflect.go b/api_reflect.go index 832358e..2467159 100644 --- a/api_reflect.go +++ b/api_reflect.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/api_test.go b/api_test.go index 701b30c..3896fe3 100644 --- a/api_test.go +++ b/api_test.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb_test import ( diff --git a/api_types.go b/api_types.go index 3e53bf8..ea75f3d 100644 --- a/api_types.go +++ b/api_types.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/config.go b/config.go index e33a0ad..a0123da 100644 --- a/config.go +++ b/config.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb type Config struct { diff --git a/db.go b/db.go index 0f32a56..e48bf26 100644 --- a/db.go +++ b/db.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/db_test.go b/db_test.go index bbcc9ae..2b5a8bb 100644 --- a/db_test.go +++ b/db_test.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb_test import ( diff --git a/live.go b/live.go index 3e89e05..2155d11 100644 --- a/live.go +++ b/live.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/live_benchmark_test.go b/live_benchmark_test.go index 5efd4b2..de2d64e 100644 --- a/live_benchmark_test.go +++ b/live_benchmark_test.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb_test import ( diff --git a/live_test.go b/live_test.go index d6b4880..405df4c 100644 --- a/live_test.go +++ b/live_test.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb_test import ( diff --git a/namespace.go b/namespace.go index 6d9f1af..950dd58 100644 --- a/namespace.go +++ b/namespace.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/namespace_test.go b/namespace_test.go index 655e216..90d7cb7 100644 --- a/namespace_test.go +++ b/namespace_test.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb_test import ( diff --git a/utils.go b/utils.go index 133ee1d..2209cc5 100644 --- a/utils.go +++ b/utils.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( diff --git a/vector_test.go b/vector_test.go index 135d438..6824b78 100644 --- a/vector_test.go +++ b/vector_test.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb_test import ( diff --git a/zero.go b/zero.go index d790a70..ebcafc2 100644 --- a/zero.go +++ b/zero.go @@ -1,3 +1,9 @@ +/* + * This example is part of the ModusDB project, licensed under the Apache License 2.0. + * You may modify and use this example in accordance with the license. + * See the LICENSE file that accompanied this code for further details. + */ + package modusdb import ( From 8523947b946a7caa393695dfaa867ebcd235c29d Mon Sep 17 00:00:00 2001 From: Jai Radhakrishnan <55522316+jairad26@users.noreply.github.com> Date: Thu, 2 Jan 2025 17:30:06 -0800 Subject: [PATCH 2/3] update --- api.go | 7 +++++-- api_dql.go | 7 +++++-- api_mutate_helper.go | 7 +++++-- api_query_helper.go | 7 +++++-- api_reflect.go | 7 +++++-- api_test.go | 7 +++++-- api_types.go | 7 +++++-- config.go | 7 +++++-- db.go | 7 +++++-- db_test.go | 7 +++++-- live.go | 7 +++++-- live_benchmark_test.go | 7 +++++-- live_test.go | 7 +++++-- namespace.go | 7 +++++-- namespace_test.go | 7 +++++-- utils.go | 7 +++++-- vector_test.go | 7 +++++-- zero.go | 7 +++++-- 18 files changed, 90 insertions(+), 36 deletions(-) diff --git a/api.go b/api.go index d7611b5..6f42b71 100644 --- a/api.go +++ b/api.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/api_dql.go b/api_dql.go index f56759e..e37660b 100644 --- a/api_dql.go +++ b/api_dql.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/api_mutate_helper.go b/api_mutate_helper.go index c90931f..279b74a 100644 --- a/api_mutate_helper.go +++ b/api_mutate_helper.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/api_query_helper.go b/api_query_helper.go index 7beda92..d98e7a2 100644 --- a/api_query_helper.go +++ b/api_query_helper.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/api_reflect.go b/api_reflect.go index 2467159..62289cf 100644 --- a/api_reflect.go +++ b/api_reflect.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/api_test.go b/api_test.go index 3896fe3..38bf167 100644 --- a/api_test.go +++ b/api_test.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb_test diff --git a/api_types.go b/api_types.go index ea75f3d..cc20ff8 100644 --- a/api_types.go +++ b/api_types.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/config.go b/config.go index a0123da..d9c5a4a 100644 --- a/config.go +++ b/config.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/db.go b/db.go index e48bf26..7bcc900 100644 --- a/db.go +++ b/db.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/db_test.go b/db_test.go index 2b5a8bb..68be21f 100644 --- a/db_test.go +++ b/db_test.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb_test diff --git a/live.go b/live.go index 2155d11..1988e3a 100644 --- a/live.go +++ b/live.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/live_benchmark_test.go b/live_benchmark_test.go index de2d64e..c6aac3e 100644 --- a/live_benchmark_test.go +++ b/live_benchmark_test.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb_test diff --git a/live_test.go b/live_test.go index 405df4c..2af0516 100644 --- a/live_test.go +++ b/live_test.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb_test diff --git a/namespace.go b/namespace.go index 950dd58..89380d3 100644 --- a/namespace.go +++ b/namespace.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/namespace_test.go b/namespace_test.go index 90d7cb7..bf6ddfe 100644 --- a/namespace_test.go +++ b/namespace_test.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb_test diff --git a/utils.go b/utils.go index 2209cc5..9be30d6 100644 --- a/utils.go +++ b/utils.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb diff --git a/vector_test.go b/vector_test.go index 6824b78..c9333f5 100644 --- a/vector_test.go +++ b/vector_test.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb_test diff --git a/zero.go b/zero.go index ebcafc2..a9b0c05 100644 --- a/zero.go +++ b/zero.go @@ -1,7 +1,10 @@ /* - * This example is part of the ModusDB project, licensed under the Apache License 2.0. - * You may modify and use this example in accordance with the license. + * Copyright 2024 Hypermode Inc. + * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. + * + * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-License-Identifier: Apache-2.0 */ package modusdb From c99c886af0504a2b50f66e40b6a68d5d374834f3 Mon Sep 17 00:00:00 2001 From: Jai Radhakrishnan <55522316+jairad26@users.noreply.github.com> Date: Thu, 2 Jan 2025 17:47:07 -0800 Subject: [PATCH 3/3] . --- api.go | 4 ++-- api_dql.go | 4 ++-- api_mutate_helper.go | 4 ++-- api_query_helper.go | 4 ++-- api_reflect.go | 4 ++-- api_test.go | 4 ++-- api_types.go | 4 ++-- config.go | 4 ++-- db.go | 4 ++-- db_test.go | 4 ++-- live.go | 4 ++-- live_benchmark_test.go | 4 ++-- live_test.go | 4 ++-- namespace.go | 4 ++-- namespace_test.go | 4 ++-- utils.go | 4 ++-- vector_test.go | 4 ++-- zero.go | 4 ++-- 18 files changed, 36 insertions(+), 36 deletions(-) diff --git a/api.go b/api.go index 6f42b71..379fccd 100644 --- a/api.go +++ b/api.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/api_dql.go b/api_dql.go index e37660b..203440a 100644 --- a/api_dql.go +++ b/api_dql.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/api_mutate_helper.go b/api_mutate_helper.go index 279b74a..2dd4188 100644 --- a/api_mutate_helper.go +++ b/api_mutate_helper.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/api_query_helper.go b/api_query_helper.go index d98e7a2..5c2552f 100644 --- a/api_query_helper.go +++ b/api_query_helper.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/api_reflect.go b/api_reflect.go index 62289cf..1779a81 100644 --- a/api_reflect.go +++ b/api_reflect.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/api_test.go b/api_test.go index 38bf167..0ae4bea 100644 --- a/api_test.go +++ b/api_test.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/api_types.go b/api_types.go index cc20ff8..2384f35 100644 --- a/api_types.go +++ b/api_types.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/config.go b/config.go index d9c5a4a..76d3d1b 100644 --- a/config.go +++ b/config.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/db.go b/db.go index 7bcc900..d092ecd 100644 --- a/db.go +++ b/db.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/db_test.go b/db_test.go index 68be21f..5de5d68 100644 --- a/db_test.go +++ b/db_test.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/live.go b/live.go index 1988e3a..d786fab 100644 --- a/live.go +++ b/live.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/live_benchmark_test.go b/live_benchmark_test.go index c6aac3e..62aee86 100644 --- a/live_benchmark_test.go +++ b/live_benchmark_test.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/live_test.go b/live_test.go index 2af0516..4b7cf88 100644 --- a/live_test.go +++ b/live_test.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/namespace.go b/namespace.go index 89380d3..710a1e0 100644 --- a/namespace.go +++ b/namespace.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/namespace_test.go b/namespace_test.go index bf6ddfe..3f808bc 100644 --- a/namespace_test.go +++ b/namespace_test.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/utils.go b/utils.go index 9be30d6..e571bb2 100644 --- a/utils.go +++ b/utils.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/vector_test.go b/vector_test.go index c9333f5..e62057d 100644 --- a/vector_test.go +++ b/vector_test.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */ diff --git a/zero.go b/zero.go index a9b0c05..130e030 100644 --- a/zero.go +++ b/zero.go @@ -1,9 +1,9 @@ /* - * Copyright 2024 Hypermode Inc. + * Copyright 2025 Hypermode Inc. * Licensed under the terms of the Apache License, Version 2.0 * See the LICENSE file that accompanied this code for further details. * - * SPDX-FileCopyrightText: 2024 Hypermode Inc. + * SPDX-FileCopyrightText: 2025 Hypermode Inc. * SPDX-License-Identifier: Apache-2.0 */