From 74c86d48896345a6ecbdb838936b306dfd871881 Mon Sep 17 00:00:00 2001 From: Philip Top Date: Fri, 3 Jan 2025 08:35:31 -0800 Subject: [PATCH] update copyright dates to 2025 (#1112) --- LICENSE | 2 +- examples/arg_capture.cpp | 2 +- examples/callback_passthrough.cpp | 2 +- examples/config_app.cpp | 2 +- examples/custom_parse.cpp | 2 +- examples/digit_args.cpp | 2 +- examples/enum.cpp | 2 +- examples/enum_ostream.cpp | 2 +- examples/formatter.cpp | 2 +- examples/groups.cpp | 2 +- examples/help_usage.cpp | 2 +- examples/inter_argument_order.cpp | 2 +- examples/json.cpp | 2 +- examples/modhelp.cpp | 2 +- examples/nested.cpp | 2 +- examples/option_groups.cpp | 2 +- examples/positional_arity.cpp | 2 +- examples/positional_validation.cpp | 2 +- examples/prefix_command.cpp | 2 +- examples/ranges.cpp | 2 +- examples/retired.cpp | 2 +- examples/shapes.cpp | 2 +- examples/simple.cpp | 2 +- examples/subcom_help.cpp | 2 +- examples/subcom_in_files/subcommand_a.cpp | 2 +- examples/subcom_in_files/subcommand_a.hpp | 2 +- examples/subcom_in_files/subcommand_main.cpp | 2 +- examples/subcom_partitioned.cpp | 2 +- examples/subcommands.cpp | 2 +- examples/testEXE.cpp | 2 +- examples/validators.cpp | 2 +- fuzz/CMakeLists.txt | 2 +- fuzz/cli11_app_fuzz.cpp | 2 +- fuzz/cli11_file_fuzz.cpp | 2 +- fuzz/fuzzApp.cpp | 2 +- fuzz/fuzzApp.hpp | 2 +- fuzz/fuzzCommand.cpp | 2 +- include/CLI/App.hpp | 2 +- include/CLI/Argv.hpp | 2 +- include/CLI/CLI.hpp | 2 +- include/CLI/Config.hpp | 2 +- include/CLI/ConfigFwd.hpp | 2 +- include/CLI/Encoding.hpp | 2 +- include/CLI/Error.hpp | 2 +- include/CLI/Formatter.hpp | 2 +- include/CLI/FormatterFwd.hpp | 2 +- include/CLI/Macros.hpp | 2 +- include/CLI/Option.hpp | 2 +- include/CLI/Split.hpp | 2 +- include/CLI/StringTools.hpp | 2 +- include/CLI/Timer.hpp | 2 +- include/CLI/TypeTools.hpp | 2 +- include/CLI/Validators.hpp | 2 +- include/CLI/Version.hpp | 2 +- include/CLI/impl/App_inl.hpp | 2 +- include/CLI/impl/Argv_inl.hpp | 2 +- include/CLI/impl/Config_inl.hpp | 2 +- include/CLI/impl/Encoding_inl.hpp | 2 +- include/CLI/impl/Formatter_inl.hpp | 2 +- include/CLI/impl/Option_inl.hpp | 2 +- include/CLI/impl/Split_inl.hpp | 2 +- include/CLI/impl/StringTools_inl.hpp | 2 +- include/CLI/impl/Validators_inl.hpp | 2 +- single-include/CLI11.hpp.in | 2 +- src/Precompile.cpp | 2 +- tests/AppTest.cpp | 2 +- tests/BoostOptionTypeTest.cpp | 2 +- tests/ComplexTypeTest.cpp | 2 +- tests/ConfigFileTest.cpp | 2 +- tests/CreationTest.cpp | 2 +- tests/DeprecatedTest.cpp | 2 +- tests/EncodingTest.cpp | 2 +- tests/FormatterTest.cpp | 2 +- tests/FuzzFailTest.cpp | 2 +- tests/HelpTest.cpp | 2 +- tests/HelpersTest.cpp | 2 +- tests/NewParseTest.cpp | 2 +- tests/OptionGroupTest.cpp | 2 +- tests/OptionTypeTest.cpp | 2 +- tests/OptionalTest.cpp | 2 +- tests/SetTest.cpp | 2 +- tests/SimpleTest.cpp | 2 +- tests/StringParseTest.cpp | 2 +- tests/SubcommandTest.cpp | 2 +- tests/TimerTest.cpp | 2 +- tests/TransformTest.cpp | 2 +- tests/TrueFalseTest.cpp | 2 +- tests/WindowsTest.cpp | 2 +- tests/app_helper.hpp | 2 +- tests/applications/ensure_utf8.cpp | 2 +- tests/applications/ensure_utf8_twice.cpp | 2 +- tests/catch.hpp | 2 +- tests/informational.cpp | 2 +- tests/link_test_1.cpp | 2 +- tests/link_test_2.cpp | 2 +- tests/main.cpp | 2 +- tests/mesonTest/main.cpp | 2 +- 97 files changed, 97 insertions(+), 97 deletions(-) diff --git a/LICENSE b/LICENSE index 715be0bb..1bc15786 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -CLI11 2.2 Copyright (c) 2017-2024 University of Cincinnati, developed by Henry +CLI11 2.2 Copyright (c) 2017-2025 University of Cincinnati, developed by Henry Schreiner under NSF AWARD 1414736. All rights reserved. Redistribution and use in source and binary forms of CLI11, with or without diff --git a/examples/arg_capture.cpp b/examples/arg_capture.cpp index bdf3afeb..3802a49c 100644 --- a/examples/arg_capture.cpp +++ b/examples/arg_capture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/callback_passthrough.cpp b/examples/callback_passthrough.cpp index 234ed894..e5d6b41c 100644 --- a/examples/callback_passthrough.cpp +++ b/examples/callback_passthrough.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/config_app.cpp b/examples/config_app.cpp index ccd98242..4d166112 100644 --- a/examples/config_app.cpp +++ b/examples/config_app.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/custom_parse.cpp b/examples/custom_parse.cpp index f78d2558..12df3c6c 100644 --- a/examples/custom_parse.cpp +++ b/examples/custom_parse.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/digit_args.cpp b/examples/digit_args.cpp index 2144f22d..1cfd41c3 100644 --- a/examples/digit_args.cpp +++ b/examples/digit_args.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/enum.cpp b/examples/enum.cpp index 863eda4d..d51a7519 100644 --- a/examples/enum.cpp +++ b/examples/enum.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/enum_ostream.cpp b/examples/enum_ostream.cpp index 939a3fa7..f9d8fa26 100644 --- a/examples/enum_ostream.cpp +++ b/examples/enum_ostream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/formatter.cpp b/examples/formatter.cpp index 98818a0c..84d39530 100644 --- a/examples/formatter.cpp +++ b/examples/formatter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/groups.cpp b/examples/groups.cpp index 8084f751..dbf2b3a8 100644 --- a/examples/groups.cpp +++ b/examples/groups.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/help_usage.cpp b/examples/help_usage.cpp index d747cb3c..08e8bfdf 100644 --- a/examples/help_usage.cpp +++ b/examples/help_usage.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/inter_argument_order.cpp b/examples/inter_argument_order.cpp index 98f38750..1ffadc97 100644 --- a/examples/inter_argument_order.cpp +++ b/examples/inter_argument_order.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/json.cpp b/examples/json.cpp index ae2595c0..93d973d8 100644 --- a/examples/json.cpp +++ b/examples/json.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2021, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/modhelp.cpp b/examples/modhelp.cpp index 472e3024..84fb81d9 100644 --- a/examples/modhelp.cpp +++ b/examples/modhelp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/nested.cpp b/examples/nested.cpp index cfdb5736..778fe833 100644 --- a/examples/nested.cpp +++ b/examples/nested.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/option_groups.cpp b/examples/option_groups.cpp index f95671a1..b4e17273 100644 --- a/examples/option_groups.cpp +++ b/examples/option_groups.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/positional_arity.cpp b/examples/positional_arity.cpp index 0db7ce3b..317bf3a6 100644 --- a/examples/positional_arity.cpp +++ b/examples/positional_arity.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/positional_validation.cpp b/examples/positional_validation.cpp index ad283e98..5db13985 100644 --- a/examples/positional_validation.cpp +++ b/examples/positional_validation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/prefix_command.cpp b/examples/prefix_command.cpp index f681a046..eee038ed 100644 --- a/examples/prefix_command.cpp +++ b/examples/prefix_command.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/ranges.cpp b/examples/ranges.cpp index 63ad06ab..9365f525 100644 --- a/examples/ranges.cpp +++ b/examples/ranges.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/retired.cpp b/examples/retired.cpp index 24f9585c..5d064685 100644 --- a/examples/retired.cpp +++ b/examples/retired.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/shapes.cpp b/examples/shapes.cpp index 39ea5792..7c94c5b7 100644 --- a/examples/shapes.cpp +++ b/examples/shapes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/simple.cpp b/examples/simple.cpp index c33037d2..c9b064e8 100644 --- a/examples/simple.cpp +++ b/examples/simple.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/subcom_help.cpp b/examples/subcom_help.cpp index d7cfadaa..f438bcaf 100644 --- a/examples/subcom_help.cpp +++ b/examples/subcom_help.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/subcom_in_files/subcommand_a.cpp b/examples/subcom_in_files/subcommand_a.cpp index 19d30914..47d24d62 100644 --- a/examples/subcom_in_files/subcommand_a.cpp +++ b/examples/subcom_in_files/subcommand_a.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/subcom_in_files/subcommand_a.hpp b/examples/subcom_in_files/subcommand_a.hpp index ae08464a..4d937afd 100644 --- a/examples/subcom_in_files/subcommand_a.hpp +++ b/examples/subcom_in_files/subcommand_a.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/subcom_in_files/subcommand_main.cpp b/examples/subcom_in_files/subcommand_main.cpp index 795dfd48..4e03f286 100644 --- a/examples/subcom_in_files/subcommand_main.cpp +++ b/examples/subcom_in_files/subcommand_main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/subcom_partitioned.cpp b/examples/subcom_partitioned.cpp index a46eea1c..eeb4c66a 100644 --- a/examples/subcom_partitioned.cpp +++ b/examples/subcom_partitioned.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/subcommands.cpp b/examples/subcommands.cpp index fe93edc2..65f7ffb9 100644 --- a/examples/subcommands.cpp +++ b/examples/subcommands.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/testEXE.cpp b/examples/testEXE.cpp index b42c60f2..abe493fc 100644 --- a/examples/testEXE.cpp +++ b/examples/testEXE.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/examples/validators.cpp b/examples/validators.cpp index 44ff1554..efbd9419 100644 --- a/examples/validators.cpp +++ b/examples/validators.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/fuzz/CMakeLists.txt b/fuzz/CMakeLists.txt index ef8bcc55..c97e3011 100644 --- a/fuzz/CMakeLists.txt +++ b/fuzz/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +# Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner # under NSF AWARD 1414736 and by the respective contributors. # All rights reserved. # diff --git a/fuzz/cli11_app_fuzz.cpp b/fuzz/cli11_app_fuzz.cpp index 67d65bd7..4f28c419 100644 --- a/fuzz/cli11_app_fuzz.cpp +++ b/fuzz/cli11_app_fuzz.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/fuzz/cli11_file_fuzz.cpp b/fuzz/cli11_file_fuzz.cpp index 754108d1..e7b6add0 100644 --- a/fuzz/cli11_file_fuzz.cpp +++ b/fuzz/cli11_file_fuzz.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/fuzz/fuzzApp.cpp b/fuzz/fuzzApp.cpp index 6f706ec0..2b0df13e 100644 --- a/fuzz/fuzzApp.cpp +++ b/fuzz/fuzzApp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/fuzz/fuzzApp.hpp b/fuzz/fuzzApp.hpp index c88dd10f..0f4038ec 100644 --- a/fuzz/fuzzApp.hpp +++ b/fuzz/fuzzApp.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/fuzz/fuzzCommand.cpp b/fuzz/fuzzCommand.cpp index 2ab9805c..b7228db1 100644 --- a/fuzz/fuzzCommand.cpp +++ b/fuzz/fuzzCommand.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/App.hpp b/include/CLI/App.hpp index ab543caa..0df94897 100644 --- a/include/CLI/App.hpp +++ b/include/CLI/App.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Argv.hpp b/include/CLI/Argv.hpp index 16aa8848..2fc47409 100644 --- a/include/CLI/Argv.hpp +++ b/include/CLI/Argv.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/CLI.hpp b/include/CLI/CLI.hpp index f8607ea4..8b01e298 100644 --- a/include/CLI/CLI.hpp +++ b/include/CLI/CLI.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Config.hpp b/include/CLI/Config.hpp index 8384e977..0655cefa 100644 --- a/include/CLI/Config.hpp +++ b/include/CLI/Config.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/ConfigFwd.hpp b/include/CLI/ConfigFwd.hpp index ef1c83d9..d2cf8556 100644 --- a/include/CLI/ConfigFwd.hpp +++ b/include/CLI/ConfigFwd.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Encoding.hpp b/include/CLI/Encoding.hpp index 42e24909..208f2d65 100644 --- a/include/CLI/Encoding.hpp +++ b/include/CLI/Encoding.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Error.hpp b/include/CLI/Error.hpp index 29a11e2c..b37f9693 100644 --- a/include/CLI/Error.hpp +++ b/include/CLI/Error.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Formatter.hpp b/include/CLI/Formatter.hpp index c5da1ef9..548cb19a 100644 --- a/include/CLI/Formatter.hpp +++ b/include/CLI/Formatter.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/FormatterFwd.hpp b/include/CLI/FormatterFwd.hpp index f86226c9..f09465d5 100644 --- a/include/CLI/FormatterFwd.hpp +++ b/include/CLI/FormatterFwd.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Macros.hpp b/include/CLI/Macros.hpp index 0d6d1767..26f6ae0a 100644 --- a/include/CLI/Macros.hpp +++ b/include/CLI/Macros.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Option.hpp b/include/CLI/Option.hpp index c295980e..0db6b317 100644 --- a/include/CLI/Option.hpp +++ b/include/CLI/Option.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Split.hpp b/include/CLI/Split.hpp index 23bc8c71..b58105f1 100644 --- a/include/CLI/Split.hpp +++ b/include/CLI/Split.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/StringTools.hpp b/include/CLI/StringTools.hpp index faf07cc6..a3ec254a 100644 --- a/include/CLI/StringTools.hpp +++ b/include/CLI/StringTools.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Timer.hpp b/include/CLI/Timer.hpp index f44c3762..0c295e57 100644 --- a/include/CLI/Timer.hpp +++ b/include/CLI/Timer.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/TypeTools.hpp b/include/CLI/TypeTools.hpp index 08fa0023..78321b91 100644 --- a/include/CLI/TypeTools.hpp +++ b/include/CLI/TypeTools.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Validators.hpp b/include/CLI/Validators.hpp index 068d33f0..484faddf 100644 --- a/include/CLI/Validators.hpp +++ b/include/CLI/Validators.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index 2c4247b2..3427220d 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/App_inl.hpp b/include/CLI/impl/App_inl.hpp index ceeca898..69eccf72 100644 --- a/include/CLI/impl/App_inl.hpp +++ b/include/CLI/impl/App_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Argv_inl.hpp b/include/CLI/impl/Argv_inl.hpp index 96750a48..b0700a8f 100644 --- a/include/CLI/impl/Argv_inl.hpp +++ b/include/CLI/impl/Argv_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Config_inl.hpp b/include/CLI/impl/Config_inl.hpp index 30c7241c..f53cf7ac 100644 --- a/include/CLI/impl/Config_inl.hpp +++ b/include/CLI/impl/Config_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Encoding_inl.hpp b/include/CLI/impl/Encoding_inl.hpp index 79ad9c54..feda36f8 100644 --- a/include/CLI/impl/Encoding_inl.hpp +++ b/include/CLI/impl/Encoding_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Formatter_inl.hpp b/include/CLI/impl/Formatter_inl.hpp index 889896af..0e253cbd 100644 --- a/include/CLI/impl/Formatter_inl.hpp +++ b/include/CLI/impl/Formatter_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Option_inl.hpp b/include/CLI/impl/Option_inl.hpp index e39060b2..61d7ddd4 100644 --- a/include/CLI/impl/Option_inl.hpp +++ b/include/CLI/impl/Option_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Split_inl.hpp b/include/CLI/impl/Split_inl.hpp index 084d8df0..025a023b 100644 --- a/include/CLI/impl/Split_inl.hpp +++ b/include/CLI/impl/Split_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/StringTools_inl.hpp b/include/CLI/impl/StringTools_inl.hpp index 76cc14a7..eb062d0f 100644 --- a/include/CLI/impl/StringTools_inl.hpp +++ b/include/CLI/impl/StringTools_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/include/CLI/impl/Validators_inl.hpp b/include/CLI/impl/Validators_inl.hpp index 277e3379..5ddcf799 100644 --- a/include/CLI/impl/Validators_inl.hpp +++ b/include/CLI/impl/Validators_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/single-include/CLI11.hpp.in b/single-include/CLI11.hpp.in index e84a20aa..8abed761 100644 --- a/single-include/CLI11.hpp.in +++ b/single-include/CLI11.hpp.in @@ -5,7 +5,7 @@ // This is a standalone header file generated by MakeSingleHeader.py in CLI11/scripts // from: {git} // -// CLI11 {version} Copyright (c) 2017-2024 University of Cincinnati, developed by Henry +// CLI11 {version} Copyright (c) 2017-2025 University of Cincinnati, developed by Henry // Schreiner under NSF AWARD 1414736. All rights reserved. // // Redistribution and use in source and binary forms of CLI11, with or without diff --git a/src/Precompile.cpp b/src/Precompile.cpp index 95ffec59..3c90a97f 100644 --- a/src/Precompile.cpp +++ b/src/Precompile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/AppTest.cpp b/tests/AppTest.cpp index 877460b4..29aff27c 100644 --- a/tests/AppTest.cpp +++ b/tests/AppTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/BoostOptionTypeTest.cpp b/tests/BoostOptionTypeTest.cpp index 279d5836..d280ad18 100644 --- a/tests/BoostOptionTypeTest.cpp +++ b/tests/BoostOptionTypeTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/ComplexTypeTest.cpp b/tests/ComplexTypeTest.cpp index 20f9dd65..c400c3ef 100644 --- a/tests/ComplexTypeTest.cpp +++ b/tests/ComplexTypeTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/ConfigFileTest.cpp b/tests/ConfigFileTest.cpp index 8cca5b7c..96e4db21 100644 --- a/tests/ConfigFileTest.cpp +++ b/tests/ConfigFileTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/CreationTest.cpp b/tests/CreationTest.cpp index 6fd79f08..8afb3fbe 100644 --- a/tests/CreationTest.cpp +++ b/tests/CreationTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/DeprecatedTest.cpp b/tests/DeprecatedTest.cpp index e4a151f2..594eb9f8 100644 --- a/tests/DeprecatedTest.cpp +++ b/tests/DeprecatedTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/EncodingTest.cpp b/tests/EncodingTest.cpp index 6b84fc20..ece4def8 100644 --- a/tests/EncodingTest.cpp +++ b/tests/EncodingTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/FormatterTest.cpp b/tests/FormatterTest.cpp index 2854a9a4..73810b1e 100644 --- a/tests/FormatterTest.cpp +++ b/tests/FormatterTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/FuzzFailTest.cpp b/tests/FuzzFailTest.cpp index 38db12e6..bfbdb2e8 100644 --- a/tests/FuzzFailTest.cpp +++ b/tests/FuzzFailTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/HelpTest.cpp b/tests/HelpTest.cpp index c7965e33..1ef79502 100644 --- a/tests/HelpTest.cpp +++ b/tests/HelpTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/HelpersTest.cpp b/tests/HelpersTest.cpp index 309dff5b..37758bbf 100644 --- a/tests/HelpersTest.cpp +++ b/tests/HelpersTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/NewParseTest.cpp b/tests/NewParseTest.cpp index c9934ba8..19d026e5 100644 --- a/tests/NewParseTest.cpp +++ b/tests/NewParseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/OptionGroupTest.cpp b/tests/OptionGroupTest.cpp index 4cfececc..d453d53d 100644 --- a/tests/OptionGroupTest.cpp +++ b/tests/OptionGroupTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/OptionTypeTest.cpp b/tests/OptionTypeTest.cpp index 6229eb48..c3012755 100644 --- a/tests/OptionTypeTest.cpp +++ b/tests/OptionTypeTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/OptionalTest.cpp b/tests/OptionalTest.cpp index c3c0cae7..1065b445 100644 --- a/tests/OptionalTest.cpp +++ b/tests/OptionalTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/SetTest.cpp b/tests/SetTest.cpp index 37952716..f4bd7e7c 100644 --- a/tests/SetTest.cpp +++ b/tests/SetTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/SimpleTest.cpp b/tests/SimpleTest.cpp index 8451439b..2355d8d3 100644 --- a/tests/SimpleTest.cpp +++ b/tests/SimpleTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/StringParseTest.cpp b/tests/StringParseTest.cpp index 6863934b..ea9f6e06 100644 --- a/tests/StringParseTest.cpp +++ b/tests/StringParseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/SubcommandTest.cpp b/tests/SubcommandTest.cpp index 492a77ba..b794e6b8 100644 --- a/tests/SubcommandTest.cpp +++ b/tests/SubcommandTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/TimerTest.cpp b/tests/TimerTest.cpp index 10163756..5486b662 100644 --- a/tests/TimerTest.cpp +++ b/tests/TimerTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/TransformTest.cpp b/tests/TransformTest.cpp index bd781f68..da523879 100644 --- a/tests/TransformTest.cpp +++ b/tests/TransformTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/TrueFalseTest.cpp b/tests/TrueFalseTest.cpp index 5315e9cb..83b7386b 100644 --- a/tests/TrueFalseTest.cpp +++ b/tests/TrueFalseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/WindowsTest.cpp b/tests/WindowsTest.cpp index 647a12a6..8dc27647 100644 --- a/tests/WindowsTest.cpp +++ b/tests/WindowsTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/app_helper.hpp b/tests/app_helper.hpp index fbe2555e..5f372c3d 100644 --- a/tests/app_helper.hpp +++ b/tests/app_helper.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/applications/ensure_utf8.cpp b/tests/applications/ensure_utf8.cpp index 84fd5f20..a664b585 100644 --- a/tests/applications/ensure_utf8.cpp +++ b/tests/applications/ensure_utf8.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/applications/ensure_utf8_twice.cpp b/tests/applications/ensure_utf8_twice.cpp index a7d0e380..1fa51a02 100644 --- a/tests/applications/ensure_utf8_twice.cpp +++ b/tests/applications/ensure_utf8_twice.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/catch.hpp b/tests/catch.hpp index 4dd23360..6541f948 100644 --- a/tests/catch.hpp +++ b/tests/catch.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/informational.cpp b/tests/informational.cpp index ae221ea7..6e5cf3f7 100644 --- a/tests/informational.cpp +++ b/tests/informational.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/link_test_1.cpp b/tests/link_test_1.cpp index 677261fb..8e6ebd25 100644 --- a/tests/link_test_1.cpp +++ b/tests/link_test_1.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/link_test_2.cpp b/tests/link_test_2.cpp index ae3fa0af..a1cfa4e3 100644 --- a/tests/link_test_2.cpp +++ b/tests/link_test_2.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/main.cpp b/tests/main.cpp index f8d148c3..15d9d664 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. // diff --git a/tests/mesonTest/main.cpp b/tests/mesonTest/main.cpp index a96c0e9a..57186ffd 100644 --- a/tests/mesonTest/main.cpp +++ b/tests/mesonTest/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2025, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. //