From bf28b4dec5699a53bdc16b86350323e1fb03eaeb Mon Sep 17 00:00:00 2001 From: Luke Date: Sat, 22 Jun 2024 21:57:19 -0400 Subject: [PATCH] fix: update packages; copyright year -> 2024 --- cmd/spirit/main.go | 2 +- go.mod | 2 +- internal/config/config.go | 2 +- internal/config/config_test.go | 2 +- internal/database/database.go | 2 +- internal/database/database_pg.go | 2 +- internal/server/config.go | 2 +- internal/server/config_test.go | 2 +- internal/server/create.go | 2 +- internal/server/create_test.go | 2 +- internal/server/fetch.go | 2 +- internal/server/fetch_test.go | 2 +- internal/server/server.go | 2 +- internal/server/server_test.go | 2 +- internal/util/domain.go | 2 +- internal/util/helpers.go | 2 +- internal/util/helpers_test.go | 2 +- internal/util/id.go | 2 +- internal/util/id_test.go | 2 +- internal/util/logger.go | 2 +- internal/util/rl_parse.go | 2 +- internal/util/rl_parse_test.go | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/cmd/spirit/main.go b/cmd/spirit/main.go index f001701c..2702b72b 100644 --- a/cmd/spirit/main.go +++ b/cmd/spirit/main.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/go.mod b/go.mod index cbb4472f..e2ec981c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/orca-group/spirit -go 1.20 +go 1.22.4 require ( github.com/caarlos0/env/v9 v9.0.0 diff --git a/internal/config/config.go b/internal/config/config.go index efa97580..1f655e99 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/config/config_test.go b/internal/config/config_test.go index 5095f080..ef4440aa 100644 --- a/internal/config/config_test.go +++ b/internal/config/config_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/database/database.go b/internal/database/database.go index 6ad2ddaa..349e4a29 100644 --- a/internal/database/database.go +++ b/internal/database/database.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/database/database_pg.go b/internal/database/database_pg.go index 0d018ce7..4ff7a4c5 100644 --- a/internal/database/database_pg.go +++ b/internal/database/database_pg.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/config.go b/internal/server/config.go index 4a6c0972..e880ba26 100644 --- a/internal/server/config.go +++ b/internal/server/config.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/config_test.go b/internal/server/config_test.go index bfb96c20..2dcea655 100644 --- a/internal/server/config_test.go +++ b/internal/server/config_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/create.go b/internal/server/create.go index 81af32b5..2afe61b0 100644 --- a/internal/server/create.go +++ b/internal/server/create.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/create_test.go b/internal/server/create_test.go index 450a8e17..2b846595 100644 --- a/internal/server/create_test.go +++ b/internal/server/create_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/fetch.go b/internal/server/fetch.go index 2b29366b..eaaeb203 100644 --- a/internal/server/fetch.go +++ b/internal/server/fetch.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/fetch_test.go b/internal/server/fetch_test.go index bba29f04..4f145006 100644 --- a/internal/server/fetch_test.go +++ b/internal/server/fetch_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/server.go b/internal/server/server.go index b2de3127..0a21329b 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/server/server_test.go b/internal/server/server_test.go index 825113a5..fc5f8023 100644 --- a/internal/server/server_test.go +++ b/internal/server/server_test.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/util/domain.go b/internal/util/domain.go index 4e7200cf..efbf6ad0 100644 --- a/internal/util/domain.go +++ b/internal/util/domain.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/util/helpers.go b/internal/util/helpers.go index ea1c8c83..5a1796bd 100644 --- a/internal/util/helpers.go +++ b/internal/util/helpers.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/util/helpers_test.go b/internal/util/helpers_test.go index 25afbda2..d6601bbf 100644 --- a/internal/util/helpers_test.go +++ b/internal/util/helpers_test.go @@ -1,5 +1,5 @@ /* -* Copyright 2020-2023 Luke Whritenour +* Copyright 2020-2024 Luke Whritenour * 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/util/id.go b/internal/util/id.go index 2a1ccb9d..7b8f3c11 100644 --- a/internal/util/id.go +++ b/internal/util/id.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/util/id_test.go b/internal/util/id_test.go index 8c053e48..7b51acea 100644 --- a/internal/util/id_test.go +++ b/internal/util/id_test.go @@ -1,5 +1,5 @@ /* -* Copyright 2020-2023 Luke Whritenour +* Copyright 2020-2024 Luke Whritenour * 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/util/logger.go b/internal/util/logger.go index 56ae17ec..18f53eaf 100644 --- a/internal/util/logger.go +++ b/internal/util/logger.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/util/rl_parse.go b/internal/util/rl_parse.go index 25f97c29..a5e6ea06 100644 --- a/internal/util/rl_parse.go +++ b/internal/util/rl_parse.go @@ -1,5 +1,5 @@ /* - * Copyright 2020-2023 Luke Whritenour + * Copyright 2020-2024 Luke Whritenour * 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/util/rl_parse_test.go b/internal/util/rl_parse_test.go index b31d4359..631e53be 100644 --- a/internal/util/rl_parse_test.go +++ b/internal/util/rl_parse_test.go @@ -1,5 +1,5 @@ /* -* Copyright 2020-2023 Luke Whritenour +* Copyright 2020-2024 Luke Whritenour * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.