From ec9f12cbb1983c80ebc7bacee3e7eaf612ab2cc3 Mon Sep 17 00:00:00 2001 From: Stephen McDowell Date: Sat, 20 Jan 2024 22:57:32 -0500 Subject: [PATCH] Update license year to 2024 (#211) --- LICENSE | 2 +- docs/conf.py | 2 +- exhale/__init__.py | 2 +- exhale/configs.py | 2 +- exhale/deploy.py | 2 +- exhale/graph.py | 2 +- exhale/parse.py | 2 +- exhale/utils.py | 2 +- testing/__init__.py | 2 +- testing/base.py | 2 +- testing/conftest.py | 2 +- testing/decorators.py | 2 +- testing/fixtures.py | 2 +- testing/hierarchies.py | 2 +- testing/projects/CMakeLists.txt | 2 +- testing/projects/c_maths/CMakeLists.txt | 2 +- testing/projects/c_maths/include/c_maths.h | 2 +- testing/projects/c_maths/src/c_maths.c | 2 +- testing/projects/c_maths/src/tests.cpp | 2 +- testing/projects/cpp with spaces/CMakeLists.txt | 2 +- .../cpp with spaces/include/with spaces/with spaces.hpp | 2 +- testing/projects/cpp with spaces/src/tests.cpp | 2 +- testing/projects/cpp with spaces/src/with spaces.cpp | 2 +- testing/projects/cpp_dir_underscores/CMakeLists.txt | 2 +- .../interface_alpha/__four_five_six__/__four_five_six__.hpp | 2 +- .../cpp_dir_underscores/include/interface_alpha/alpha.hpp | 2 +- .../include/interface_alpha/one_two_three/one_two_three.hpp | 2 +- .../cpp_dir_underscores/include/interface_beta/beta.hpp | 2 +- testing/projects/cpp_dir_underscores/src/tests.cpp | 2 +- testing/projects/cpp_fortran_mixed/CMakeLists.txt | 2 +- .../projects/cpp_fortran_mixed/include/convert/convert.hpp | 2 +- testing/projects/cpp_fortran_mixed/src/conversions.f90 | 2 +- testing/projects/cpp_fortran_mixed/src/convert.cpp | 2 +- testing/projects/cpp_fortran_mixed/src/tests.cpp | 2 +- testing/projects/cpp_func_overloads/CMakeLists.txt | 2 +- .../cpp_func_overloads/include/overload/operators.hpp | 2 +- .../projects/cpp_func_overloads/include/overload/overload.hpp | 2 +- testing/projects/cpp_func_overloads/src/tests.cpp | 2 +- testing/projects/cpp_long_names/CMakeLists.txt | 2 +- .../projects/cpp_long_names/include/absurdly_long_names.hpp | 2 +- testing/projects/cpp_long_names/src/tests.cpp | 2 +- testing/projects/cpp_nesting/CMakeLists.txt | 2 +- .../cpp_nesting/include/nested/dual_nested/one/one.hpp | 2 +- .../cpp_nesting/include/nested/dual_nested/two/two.hpp | 2 +- testing/projects/cpp_nesting/include/nested/one/one.hpp | 2 +- testing/projects/cpp_nesting/include/nested/two/two.hpp | 2 +- .../projects/cpp_nesting/include/nesting_specializations.hpp | 2 +- testing/projects/cpp_nesting/include/top_level.hpp | 2 +- testing/projects/cpp_nesting/src/tests.cpp | 2 +- testing/projects/cpp_pimpl/CMakeLists.txt | 2 +- testing/projects/cpp_pimpl/include/pimpl/planet.hpp | 2 +- testing/projects/cpp_pimpl/src/tests.cpp | 2 +- testing/tests/__init__.py | 2 +- testing/tests/c_maths.py | 2 +- testing/tests/configs.py | 2 +- testing/tests/configs_tree_view.py | 2 +- testing/tests/configs_tree_view_data/__init__.py | 2 +- testing/tests/cpp_dir_underscores.py | 2 +- testing/tests/cpp_fortran_mixed.py | 2 +- testing/tests/cpp_func_overloads.py | 2 +- testing/tests/cpp_long_names.py | 4 ++-- testing/tests/cpp_nesting.py | 2 +- testing/tests/cpp_pimpl.py | 2 +- testing/tests/cpp_with_spaces.py | 2 +- testing/tests/utils.py | 2 +- testing/utils.py | 2 +- 66 files changed, 67 insertions(+), 67 deletions(-) diff --git a/LICENSE b/LICENSE index c1b02ff..ec523f8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2017-2023, Stephen McDowell +Copyright (c) 2017-2024, Stephen McDowell All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/conf.py b/docs/conf.py index 6fc0dc4..427e1ff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ needs_sphinx = "4.3.1" project = "Exhale" -copyright = "2017-2023, Stephen McDowell" +copyright = "2017-2024, Stephen McDowell" author = "Stephen McDowell" version = exhale.__version__ release = exhale.__version__ diff --git a/exhale/__init__.py b/exhale/__init__.py index d245fc0..365addb 100644 --- a/exhale/__init__.py +++ b/exhale/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/exhale/configs.py b/exhale/configs.py index 72b470c..e54dbbf 100644 --- a/exhale/configs.py +++ b/exhale/configs.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/exhale/deploy.py b/exhale/deploy.py index ad210b8..cca1f98 100644 --- a/exhale/deploy.py +++ b/exhale/deploy.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/exhale/graph.py b/exhale/graph.py index ff62e04..c0d8e86 100644 --- a/exhale/graph.py +++ b/exhale/graph.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/exhale/parse.py b/exhale/parse.py index 7e19094..fb2f506 100644 --- a/exhale/parse.py +++ b/exhale/parse.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/exhale/utils.py b/exhale/utils.py index 4fb8c6f..2e6890d 100644 --- a/exhale/utils.py +++ b/exhale/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/__init__.py b/testing/__init__.py index a86dffd..519385d 100644 --- a/testing/__init__.py +++ b/testing/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/base.py b/testing/base.py index 8ec156c..3360c81 100644 --- a/testing/base.py +++ b/testing/base.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/conftest.py b/testing/conftest.py index ab2f20f..1807bbb 100644 --- a/testing/conftest.py +++ b/testing/conftest.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/decorators.py b/testing/decorators.py index 2b63d8d..0825c8d 100644 --- a/testing/decorators.py +++ b/testing/decorators.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/fixtures.py b/testing/fixtures.py index d2ca6b3..0fc0c6f 100644 --- a/testing/fixtures.py +++ b/testing/fixtures.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/hierarchies.py b/testing/hierarchies.py index 07e0d7a..4335267 100644 --- a/testing/hierarchies.py +++ b/testing/hierarchies.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/projects/CMakeLists.txt b/testing/projects/CMakeLists.txt index 0296de5..0b826a2 100644 --- a/testing/projects/CMakeLists.txt +++ b/testing/projects/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/c_maths/CMakeLists.txt b/testing/projects/c_maths/CMakeLists.txt index f2eb954..572464d 100644 --- a/testing/projects/c_maths/CMakeLists.txt +++ b/testing/projects/c_maths/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/c_maths/include/c_maths.h b/testing/projects/c_maths/include/c_maths.h index f7892e4..07a549c 100644 --- a/testing/projects/c_maths/include/c_maths.h +++ b/testing/projects/c_maths/include/c_maths.h @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/c_maths/src/c_maths.c b/testing/projects/c_maths/src/c_maths.c index 876c3aa..05467f4 100644 --- a/testing/projects/c_maths/src/c_maths.c +++ b/testing/projects/c_maths/src/c_maths.c @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/c_maths/src/tests.cpp b/testing/projects/c_maths/src/tests.cpp index 3595d61..69eecc5 100644 --- a/testing/projects/c_maths/src/tests.cpp +++ b/testing/projects/c_maths/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp with spaces/CMakeLists.txt b/testing/projects/cpp with spaces/CMakeLists.txt index 16bf5e6..3871a8d 100644 --- a/testing/projects/cpp with spaces/CMakeLists.txt +++ b/testing/projects/cpp with spaces/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp with spaces/include/with spaces/with spaces.hpp b/testing/projects/cpp with spaces/include/with spaces/with spaces.hpp index d782370..90a9881 100644 --- a/testing/projects/cpp with spaces/include/with spaces/with spaces.hpp +++ b/testing/projects/cpp with spaces/include/with spaces/with spaces.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp with spaces/src/tests.cpp b/testing/projects/cpp with spaces/src/tests.cpp index 02682ac..75749f2 100644 --- a/testing/projects/cpp with spaces/src/tests.cpp +++ b/testing/projects/cpp with spaces/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp with spaces/src/with spaces.cpp b/testing/projects/cpp with spaces/src/with spaces.cpp index 5b0d0bf..c39d336 100644 --- a/testing/projects/cpp with spaces/src/with spaces.cpp +++ b/testing/projects/cpp with spaces/src/with spaces.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_dir_underscores/CMakeLists.txt b/testing/projects/cpp_dir_underscores/CMakeLists.txt index 058ba3c..d9f7b8d 100644 --- a/testing/projects/cpp_dir_underscores/CMakeLists.txt +++ b/testing/projects/cpp_dir_underscores/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp_dir_underscores/include/interface_alpha/__four_five_six__/__four_five_six__.hpp b/testing/projects/cpp_dir_underscores/include/interface_alpha/__four_five_six__/__four_five_six__.hpp index 51a5ffe..764665e 100644 --- a/testing/projects/cpp_dir_underscores/include/interface_alpha/__four_five_six__/__four_five_six__.hpp +++ b/testing/projects/cpp_dir_underscores/include/interface_alpha/__four_five_six__/__four_five_six__.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_dir_underscores/include/interface_alpha/alpha.hpp b/testing/projects/cpp_dir_underscores/include/interface_alpha/alpha.hpp index 9a1e08d..e02e2e5 100644 --- a/testing/projects/cpp_dir_underscores/include/interface_alpha/alpha.hpp +++ b/testing/projects/cpp_dir_underscores/include/interface_alpha/alpha.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_dir_underscores/include/interface_alpha/one_two_three/one_two_three.hpp b/testing/projects/cpp_dir_underscores/include/interface_alpha/one_two_three/one_two_three.hpp index e2f00b5..3add6c3 100644 --- a/testing/projects/cpp_dir_underscores/include/interface_alpha/one_two_three/one_two_three.hpp +++ b/testing/projects/cpp_dir_underscores/include/interface_alpha/one_two_three/one_two_three.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_dir_underscores/include/interface_beta/beta.hpp b/testing/projects/cpp_dir_underscores/include/interface_beta/beta.hpp index 53fece3..2a6a30a 100644 --- a/testing/projects/cpp_dir_underscores/include/interface_beta/beta.hpp +++ b/testing/projects/cpp_dir_underscores/include/interface_beta/beta.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_dir_underscores/src/tests.cpp b/testing/projects/cpp_dir_underscores/src/tests.cpp index e0f2b0a..56d75ed 100644 --- a/testing/projects/cpp_dir_underscores/src/tests.cpp +++ b/testing/projects/cpp_dir_underscores/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_fortran_mixed/CMakeLists.txt b/testing/projects/cpp_fortran_mixed/CMakeLists.txt index 293e9c5..e4c1be8 100644 --- a/testing/projects/cpp_fortran_mixed/CMakeLists.txt +++ b/testing/projects/cpp_fortran_mixed/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp_fortran_mixed/include/convert/convert.hpp b/testing/projects/cpp_fortran_mixed/include/convert/convert.hpp index e904103..f2596b9 100644 --- a/testing/projects/cpp_fortran_mixed/include/convert/convert.hpp +++ b/testing/projects/cpp_fortran_mixed/include/convert/convert.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_fortran_mixed/src/conversions.f90 b/testing/projects/cpp_fortran_mixed/src/conversions.f90 index bdcde89..ab271cf 100644 --- a/testing/projects/cpp_fortran_mixed/src/conversions.f90 +++ b/testing/projects/cpp_fortran_mixed/src/conversions.f90 @@ -2,7 +2,7 @@ ! This file is dedicated to the public domain. If your jurisdiction requires a ! ! specific license: ! ! ! -! Copyright (c) Stephen McDowell, 2017-2023 ! +! Copyright (c) Stephen McDowell, 2017-2024 ! ! License: CC0 1.0 Universal ! ! License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! diff --git a/testing/projects/cpp_fortran_mixed/src/convert.cpp b/testing/projects/cpp_fortran_mixed/src/convert.cpp index 25b6bcf..8c32f0e 100644 --- a/testing/projects/cpp_fortran_mixed/src/convert.cpp +++ b/testing/projects/cpp_fortran_mixed/src/convert.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_fortran_mixed/src/tests.cpp b/testing/projects/cpp_fortran_mixed/src/tests.cpp index 7fa9f50..be6b313 100644 --- a/testing/projects/cpp_fortran_mixed/src/tests.cpp +++ b/testing/projects/cpp_fortran_mixed/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_func_overloads/CMakeLists.txt b/testing/projects/cpp_func_overloads/CMakeLists.txt index c5d176a..72d90ef 100644 --- a/testing/projects/cpp_func_overloads/CMakeLists.txt +++ b/testing/projects/cpp_func_overloads/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp_func_overloads/include/overload/operators.hpp b/testing/projects/cpp_func_overloads/include/overload/operators.hpp index 46e9959..aa93ac3 100644 --- a/testing/projects/cpp_func_overloads/include/overload/operators.hpp +++ b/testing/projects/cpp_func_overloads/include/overload/operators.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_func_overloads/include/overload/overload.hpp b/testing/projects/cpp_func_overloads/include/overload/overload.hpp index 977a2a1..51fd864 100644 --- a/testing/projects/cpp_func_overloads/include/overload/overload.hpp +++ b/testing/projects/cpp_func_overloads/include/overload/overload.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_func_overloads/src/tests.cpp b/testing/projects/cpp_func_overloads/src/tests.cpp index 51607fc..b9d9141 100644 --- a/testing/projects/cpp_func_overloads/src/tests.cpp +++ b/testing/projects/cpp_func_overloads/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_long_names/CMakeLists.txt b/testing/projects/cpp_long_names/CMakeLists.txt index 6fcef54..8c8484b 100644 --- a/testing/projects/cpp_long_names/CMakeLists.txt +++ b/testing/projects/cpp_long_names/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp_long_names/include/absurdly_long_names.hpp b/testing/projects/cpp_long_names/include/absurdly_long_names.hpp index 94fd82e..916a7e6 100644 --- a/testing/projects/cpp_long_names/include/absurdly_long_names.hpp +++ b/testing/projects/cpp_long_names/include/absurdly_long_names.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_long_names/src/tests.cpp b/testing/projects/cpp_long_names/src/tests.cpp index ff9a6aa..0251db6 100644 --- a/testing/projects/cpp_long_names/src/tests.cpp +++ b/testing/projects/cpp_long_names/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/CMakeLists.txt b/testing/projects/cpp_nesting/CMakeLists.txt index 4244165..3156b42 100644 --- a/testing/projects/cpp_nesting/CMakeLists.txt +++ b/testing/projects/cpp_nesting/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp_nesting/include/nested/dual_nested/one/one.hpp b/testing/projects/cpp_nesting/include/nested/dual_nested/one/one.hpp index b507f91..5dc057f 100644 --- a/testing/projects/cpp_nesting/include/nested/dual_nested/one/one.hpp +++ b/testing/projects/cpp_nesting/include/nested/dual_nested/one/one.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/include/nested/dual_nested/two/two.hpp b/testing/projects/cpp_nesting/include/nested/dual_nested/two/two.hpp index 7edbad3..32fce53 100644 --- a/testing/projects/cpp_nesting/include/nested/dual_nested/two/two.hpp +++ b/testing/projects/cpp_nesting/include/nested/dual_nested/two/two.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/include/nested/one/one.hpp b/testing/projects/cpp_nesting/include/nested/one/one.hpp index 3979eb6..661f7d3 100644 --- a/testing/projects/cpp_nesting/include/nested/one/one.hpp +++ b/testing/projects/cpp_nesting/include/nested/one/one.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/include/nested/two/two.hpp b/testing/projects/cpp_nesting/include/nested/two/two.hpp index 6bfc35a..cf69d6e 100644 --- a/testing/projects/cpp_nesting/include/nested/two/two.hpp +++ b/testing/projects/cpp_nesting/include/nested/two/two.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/include/nesting_specializations.hpp b/testing/projects/cpp_nesting/include/nesting_specializations.hpp index c7125f5..6fc6aa0 100644 --- a/testing/projects/cpp_nesting/include/nesting_specializations.hpp +++ b/testing/projects/cpp_nesting/include/nesting_specializations.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/include/top_level.hpp b/testing/projects/cpp_nesting/include/top_level.hpp index 03b6305..3358422 100644 --- a/testing/projects/cpp_nesting/include/top_level.hpp +++ b/testing/projects/cpp_nesting/include/top_level.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_nesting/src/tests.cpp b/testing/projects/cpp_nesting/src/tests.cpp index 2553742..7e7f737 100644 --- a/testing/projects/cpp_nesting/src/tests.cpp +++ b/testing/projects/cpp_nesting/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_pimpl/CMakeLists.txt b/testing/projects/cpp_pimpl/CMakeLists.txt index 4ee595e..ba26025 100644 --- a/testing/projects/cpp_pimpl/CMakeLists.txt +++ b/testing/projects/cpp_pimpl/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is dedicated to the public domain. If your jurisdiction requires a # # specific license: # # # -# Copyright (c) Stephen McDowell, 2017-2023 # +# Copyright (c) Stephen McDowell, 2017-2024 # # License: CC0 1.0 Universal # # License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode # ######################################################################################## diff --git a/testing/projects/cpp_pimpl/include/pimpl/planet.hpp b/testing/projects/cpp_pimpl/include/pimpl/planet.hpp index f3e2490..5761150 100644 --- a/testing/projects/cpp_pimpl/include/pimpl/planet.hpp +++ b/testing/projects/cpp_pimpl/include/pimpl/planet.hpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/projects/cpp_pimpl/src/tests.cpp b/testing/projects/cpp_pimpl/src/tests.cpp index 91b6a51..9e7cfa4 100644 --- a/testing/projects/cpp_pimpl/src/tests.cpp +++ b/testing/projects/cpp_pimpl/src/tests.cpp @@ -2,7 +2,7 @@ * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/tests/__init__.py b/testing/tests/__init__.py index a2edbb8..aaffa71 100644 --- a/testing/tests/__init__.py +++ b/testing/tests/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/c_maths.py b/testing/tests/c_maths.py index d1371d0..14f18e2 100644 --- a/testing/tests/c_maths.py +++ b/testing/tests/c_maths.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/configs.py b/testing/tests/configs.py index 565ffc5..c80c906 100644 --- a/testing/tests/configs.py +++ b/testing/tests/configs.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/configs_tree_view.py b/testing/tests/configs_tree_view.py index 72a55bb..feadc40 100644 --- a/testing/tests/configs_tree_view.py +++ b/testing/tests/configs_tree_view.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/configs_tree_view_data/__init__.py b/testing/tests/configs_tree_view_data/__init__.py index b6dc058..35a7382 100644 --- a/testing/tests/configs_tree_view_data/__init__.py +++ b/testing/tests/configs_tree_view_data/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/cpp_dir_underscores.py b/testing/tests/cpp_dir_underscores.py index 74edd6a..d1a732e 100644 --- a/testing/tests/cpp_dir_underscores.py +++ b/testing/tests/cpp_dir_underscores.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/cpp_fortran_mixed.py b/testing/tests/cpp_fortran_mixed.py index 8aaf47b..a27d8c7 100644 --- a/testing/tests/cpp_fortran_mixed.py +++ b/testing/tests/cpp_fortran_mixed.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/cpp_func_overloads.py b/testing/tests/cpp_func_overloads.py index 9cbcc46..e1e0f0e 100644 --- a/testing/tests/cpp_func_overloads.py +++ b/testing/tests/cpp_func_overloads.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/cpp_long_names.py b/testing/tests/cpp_long_names.py index c8336e6..b852438 100644 --- a/testing/tests/cpp_long_names.py +++ b/testing/tests/cpp_long_names.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # @@ -46,7 +46,7 @@ def create_absurd_directory_structure(): * This file is dedicated to the public domain. If your jurisdiction requires a * * specific license: * * * - * Copyright (c) Stephen McDowell, 2017-2023 * + * Copyright (c) Stephen McDowell, 2017-2024 * * License: CC0 1.0 Universal * * License Text: https://creativecommons.org/publicdomain/zero/1.0/legalcode * **************************************************************************************/ diff --git a/testing/tests/cpp_nesting.py b/testing/tests/cpp_nesting.py index befb7de..e295a96 100644 --- a/testing/tests/cpp_nesting.py +++ b/testing/tests/cpp_nesting.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/cpp_pimpl.py b/testing/tests/cpp_pimpl.py index fe31bb7..c1f93bd 100644 --- a/testing/tests/cpp_pimpl.py +++ b/testing/tests/cpp_pimpl.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/cpp_with_spaces.py b/testing/tests/cpp_with_spaces.py index 27e2387..6ac6922 100644 --- a/testing/tests/cpp_with_spaces.py +++ b/testing/tests/cpp_with_spaces.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/tests/utils.py b/testing/tests/utils.py index f71ac7a..0e06ff6 100644 --- a/testing/tests/utils.py +++ b/testing/tests/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE # diff --git a/testing/utils.py b/testing/utils.py index 071b1ae..70572bc 100644 --- a/testing/utils.py +++ b/testing/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf8 -*- ######################################################################################## -# This file is part of exhale. Copyright (c) 2017-2023, Stephen McDowell. # +# This file is part of exhale. Copyright (c) 2017-2024, Stephen McDowell. # # Full BSD 3-Clause license available here: # # # # https://github.com/svenevs/exhale/blob/master/LICENSE #