Update copyright to 2024 (#2846)

This commit is contained in:
Paul Romano 2024-01-17 16:10:39 -06:00 committed by GitHub
parent 057c33a48e
commit 2c5b740738
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

View file

@ -74,7 +74,7 @@ void title()
// Write version information
fmt::print(
" | The OpenMC Monte Carlo Code\n"
" Copyright | 2011-2023 MIT, UChicago Argonne LLC, and contributors\n"
" Copyright | 2011-2024 MIT, UChicago Argonne LLC, and contributors\n"
" License | https://docs.openmc.org/en/latest/license.html\n"
" Version | {}.{}.{}{}\n",
VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE, VERSION_DEV ? "-dev" : "");
@ -295,7 +295,7 @@ void print_version()
#ifdef GIT_SHA1
fmt::print("Git SHA1: {}\n", GIT_SHA1);
#endif
fmt::print("Copyright (c) 2011-2023 MIT, UChicago Argonne LLC, and "
fmt::print("Copyright (c) 2011-2024 MIT, UChicago Argonne LLC, and "
"contributors\nMIT/X license at "
"<https://docs.openmc.org/en/latest/license.html>\n");
}