From 39a5f1981e9395e82be863e77b4b0c69239ec338 Mon Sep 17 00:00:00 2001 From: Philip Top Date: Tue, 3 Jan 2023 14:29:37 -0800 Subject: [PATCH] chore: update copyright year to 2023 (#825) --- LICENSE | 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/inter_argument_order.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 +- include/CLI/App.hpp | 2 +- include/CLI/CLI.hpp | 2 +- include/CLI/Config.hpp | 2 +- include/CLI/ConfigFwd.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/Config_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 +- tests/AppTest.cpp | 2 +- tests/ComplexTypeTest.cpp | 2 +- tests/ConfigFileTest.cpp | 2 +- tests/CreationTest.cpp | 2 +- tests/DeprecatedTest.cpp | 2 +- tests/FormatterTest.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/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 +- 76 files changed, 76 insertions(+), 76 deletions(-) diff --git a/LICENSE b/LICENSE index 71c47703..aae15855 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -CLI11 2.2 Copyright (c) 2017-2022 University of Cincinnati, developed by Henry +CLI11 2.2 Copyright (c) 2017-2023 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/callback_passthrough.cpp b/examples/callback_passthrough.cpp index 833ef6fc..1aac0df6 100644 --- a/examples/callback_passthrough.cpp +++ b/examples/callback_passthrough.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 986e80d9..a0426ad6 100644 --- a/examples/config_app.cpp +++ b/examples/config_app.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 793ddfab..eaaedd55 100644 --- a/examples/custom_parse.cpp +++ b/examples/custom_parse.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 023be6c6..a0785ddb 100644 --- a/examples/digit_args.cpp +++ b/examples/digit_args.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 90684333..133adde9 100644 --- a/examples/enum.cpp +++ b/examples/enum.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 4ccc6a00..1f8ac57e 100644 --- a/examples/enum_ostream.cpp +++ b/examples/enum_ostream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 09d6dce1..4973cf95 100644 --- a/examples/formatter.cpp +++ b/examples/formatter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 2ebc1e88..09c5d6ba 100644 --- a/examples/groups.cpp +++ b/examples/groups.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 8fe063e3..e8c489c2 100644 --- a/examples/inter_argument_order.cpp +++ b/examples/inter_argument_order.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 ac2ba175..d0f8cf87 100644 --- a/examples/modhelp.cpp +++ b/examples/modhelp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 07aa75fb..3587023a 100644 --- a/examples/nested.cpp +++ b/examples/nested.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 9799bdc6..3a282536 100644 --- a/examples/option_groups.cpp +++ b/examples/option_groups.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 e8c45c4d..d2d9b9c8 100644 --- a/examples/positional_arity.cpp +++ b/examples/positional_arity.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 ce676d9d..6b552daa 100644 --- a/examples/positional_validation.cpp +++ b/examples/positional_validation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 61639411..843f4037 100644 --- a/examples/prefix_command.cpp +++ b/examples/prefix_command.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 42b1659c..ec14905b 100644 --- a/examples/ranges.cpp +++ b/examples/ranges.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 0a3a5fbe..28f61da0 100644 --- a/examples/retired.cpp +++ b/examples/retired.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 d9f47cab..d3f48ac7 100644 --- a/examples/shapes.cpp +++ b/examples/shapes.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 5f94bc83..b7095dd2 100644 --- a/examples/simple.cpp +++ b/examples/simple.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 952060de..65030eb8 100644 --- a/examples/subcom_help.cpp +++ b/examples/subcom_help.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 9ad65e01..bb1a6a13 100644 --- a/examples/subcom_in_files/subcommand_a.cpp +++ b/examples/subcom_in_files/subcommand_a.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 cfa4883e..6a8395d1 100644 --- a/examples/subcom_in_files/subcommand_a.hpp +++ b/examples/subcom_in_files/subcommand_a.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 1ff5fdad..e65339c9 100644 --- a/examples/subcom_in_files/subcommand_main.cpp +++ b/examples/subcom_in_files/subcommand_main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 493ac0e3..b6273eae 100644 --- a/examples/subcom_partitioned.cpp +++ b/examples/subcom_partitioned.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 44d4df92..e69c04ee 100644 --- a/examples/subcommands.cpp +++ b/examples/subcommands.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 b63fa949..b2cac7fb 100644 --- a/examples/testEXE.cpp +++ b/examples/testEXE.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 050be00f..87eb07ab 100644 --- a/examples/validators.cpp +++ b/examples/validators.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 714ab2bb..979237f3 100644 --- a/include/CLI/App.hpp +++ b/include/CLI/App.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 0b6c3448..ae4fc604 100644 --- a/include/CLI/CLI.hpp +++ b/include/CLI/CLI.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 685981c2..8dfcddd9 100644 --- a/include/CLI/Config.hpp +++ b/include/CLI/Config.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 c5da8d27..a9ae2176 100644 --- a/include/CLI/ConfigFwd.hpp +++ b/include/CLI/ConfigFwd.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 45df83bb..0900da53 100644 --- a/include/CLI/Error.hpp +++ b/include/CLI/Error.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 c1eceac1..f58058f2 100644 --- a/include/CLI/Formatter.hpp +++ b/include/CLI/Formatter.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 bdae54d9..5ef0a5b5 100644 --- a/include/CLI/FormatterFwd.hpp +++ b/include/CLI/FormatterFwd.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 69067061..e8543903 100644 --- a/include/CLI/Macros.hpp +++ b/include/CLI/Macros.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 458d9ffc..d3235073 100644 --- a/include/CLI/Option.hpp +++ b/include/CLI/Option.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 14be8228..d00e7f8c 100644 --- a/include/CLI/Split.hpp +++ b/include/CLI/Split.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a891b127..2a31005c 100644 --- a/include/CLI/StringTools.hpp +++ b/include/CLI/StringTools.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 c6898204..b185d330 100644 --- a/include/CLI/Timer.hpp +++ b/include/CLI/Timer.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 2c729776..1555b299 100644 --- a/include/CLI/TypeTools.hpp +++ b/include/CLI/TypeTools.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 119d7303..28bdcb2d 100644 --- a/include/CLI/Validators.hpp +++ b/include/CLI/Validators.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 c29daf97..e418ebe9 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 865dff44..71afaa5c 100644 --- a/include/CLI/impl/App_inl.hpp +++ b/include/CLI/impl/App_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 adbcb120..8021d5f6 100644 --- a/include/CLI/impl/Config_inl.hpp +++ b/include/CLI/impl/Config_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a93098f3..541cd347 100644 --- a/include/CLI/impl/Formatter_inl.hpp +++ b/include/CLI/impl/Formatter_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a9734623..a24df9ab 100644 --- a/include/CLI/impl/Option_inl.hpp +++ b/include/CLI/impl/Option_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 03478b20..bb05a868 100644 --- a/include/CLI/impl/Split_inl.hpp +++ b/include/CLI/impl/Split_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 1a7cdd81..9b81fbde 100644 --- a/include/CLI/impl/StringTools_inl.hpp +++ b/include/CLI/impl/StringTools_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 31f193f9..d6ac4fde 100644 --- a/include/CLI/impl/Validators_inl.hpp +++ b/include/CLI/impl/Validators_inl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a37958dc..de90f646 100644 --- a/tests/AppTest.cpp +++ b/tests/AppTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 156798ba..2c3e156f 100644 --- a/tests/ComplexTypeTest.cpp +++ b/tests/ComplexTypeTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 3aa92f99..eb6af960 100644 --- a/tests/ConfigFileTest.cpp +++ b/tests/ConfigFileTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 9f55f6c8..eaf36889 100644 --- a/tests/CreationTest.cpp +++ b/tests/CreationTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 8c45f249..2a823352 100644 --- a/tests/DeprecatedTest.cpp +++ b/tests/DeprecatedTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 1dc454bd..641fd409 100644 --- a/tests/FormatterTest.cpp +++ b/tests/FormatterTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a09974a9..996e12ca 100644 --- a/tests/HelpTest.cpp +++ b/tests/HelpTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a5e5cbd6..5186b47f 100644 --- a/tests/HelpersTest.cpp +++ b/tests/HelpersTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 74e14d54..ced35e69 100644 --- a/tests/NewParseTest.cpp +++ b/tests/NewParseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 8c5dc38d..7c475e8a 100644 --- a/tests/OptionGroupTest.cpp +++ b/tests/OptionGroupTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 4c23ecc7..3acdde49 100644 --- a/tests/OptionTypeTest.cpp +++ b/tests/OptionTypeTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 4094c44b..3d78e349 100644 --- a/tests/OptionalTest.cpp +++ b/tests/OptionalTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 ffb15eb9..b3269899 100644 --- a/tests/SetTest.cpp +++ b/tests/SetTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 84ec6f0c..14d6558b 100644 --- a/tests/SimpleTest.cpp +++ b/tests/SimpleTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 6a889e45..cc1205fe 100644 --- a/tests/StringParseTest.cpp +++ b/tests/StringParseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 84a62d82..f087598e 100644 --- a/tests/SubcommandTest.cpp +++ b/tests/SubcommandTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 a3d8c1d9..625318a8 100644 --- a/tests/TimerTest.cpp +++ b/tests/TimerTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 5ace484e..9406e025 100644 --- a/tests/TransformTest.cpp +++ b/tests/TransformTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 d7d2f2cd..93f2f3fb 100644 --- a/tests/TrueFalseTest.cpp +++ b/tests/TrueFalseTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 0527cfb0..a17d5873 100644 --- a/tests/WindowsTest.cpp +++ b/tests/WindowsTest.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 da41d685..c1778f5f 100644 --- a/tests/catch.hpp +++ b/tests/catch.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 9df227fa..4f7f27b5 100644 --- a/tests/informational.cpp +++ b/tests/informational.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 1cbec7b7..ba1b2d83 100644 --- a/tests/link_test_1.cpp +++ b/tests/link_test_1.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 9dcc3db2..46d77be2 100644 --- a/tests/link_test_2.cpp +++ b/tests/link_test_2.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 20bb46d6..451f6503 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2022, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, 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 64d45eb6..39bb7845 100644 --- a/tests/mesonTest/main.cpp +++ b/tests/mesonTest/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2021, University of Cincinnati, developed by Henry Schreiner +// Copyright (c) 2017-2023, University of Cincinnati, developed by Henry Schreiner // under NSF AWARD 1414736 and by the respective contributors. // All rights reserved. //