Update copyright to 2026 (#3834)

This commit is contained in:
Paul Romano 2026-02-26 02:14:28 -06:00 committed by GitHub
parent 322b741fde
commit 17d4164242
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
Copyright (c) 2011-2025 Massachusetts Institute of Technology, UChicago Argonne Copyright (c) 2011-2026 Massachusetts Institute of Technology, UChicago Argonne
LLC, and OpenMC contributors LLC, and OpenMC contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of

View file

@ -62,7 +62,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = 'OpenMC' project = 'OpenMC'
copyright = '2011-2025, Massachusetts Institute of Technology, UChicago Argonne LLC, and OpenMC contributors' copyright = '2011-2026, Massachusetts Institute of Technology, UChicago Argonne LLC, and OpenMC contributors'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the

View file

@ -4,7 +4,7 @@
License Agreement License Agreement
================= =================
Copyright © 2011-2025 Massachusetts Institute of Technology, UChicago Argonne Copyright © 2011-2026 Massachusetts Institute of Technology, UChicago Argonne
LLC, and OpenMC contributors LLC, and OpenMC contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of

View file

@ -66,7 +66,7 @@ Indicates the default path to an HDF5 file that contains multi-group cross
section libraries if the user has not specified the <cross_sections> tag in section libraries if the user has not specified the <cross_sections> tag in
.I materials.xml\fP. .I materials.xml\fP.
.SH LICENSE .SH LICENSE
Copyright \(co 2011-2025 Massachusetts Institute of Technology, UChicago Copyright \(co 2011-2026 Massachusetts Institute of Technology, UChicago
Argonne LLC, and OpenMC contributors. Argonne LLC, and OpenMC contributors.
.PP .PP
Permission is hereby granted, free of charge, to any person obtaining a copy of Permission is hereby granted, free of charge, to any person obtaining a copy of

View file

@ -81,7 +81,7 @@ void title()
// Write version information // Write version information
fmt::print( fmt::print(
" | The OpenMC Monte Carlo Code\n" " | The OpenMC Monte Carlo Code\n"
" Copyright | 2011-2025 MIT, UChicago Argonne LLC, and contributors\n" " Copyright | 2011-2026 MIT, UChicago Argonne LLC, and contributors\n"
" License | https://docs.openmc.org/en/latest/license.html\n" " License | https://docs.openmc.org/en/latest/license.html\n"
" Version | {}.{}.{}{}{}\n", " Version | {}.{}.{}{}{}\n",
VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE, VERSION_DEV ? "-dev" : "", VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE, VERSION_DEV ? "-dev" : "",
@ -301,7 +301,7 @@ void print_version()
fmt::print("OpenMC version {}.{}.{}{}{}\n", VERSION_MAJOR, VERSION_MINOR, fmt::print("OpenMC version {}.{}.{}{}{}\n", VERSION_MAJOR, VERSION_MINOR,
VERSION_RELEASE, VERSION_DEV ? "-dev" : "", VERSION_COMMIT_COUNT); VERSION_RELEASE, VERSION_DEV ? "-dev" : "", VERSION_COMMIT_COUNT);
fmt::print("Commit hash: {}\n", VERSION_COMMIT_HASH); fmt::print("Commit hash: {}\n", VERSION_COMMIT_HASH);
fmt::print("Copyright (c) 2011-2025 MIT, UChicago Argonne LLC, and " fmt::print("Copyright (c) 2011-2026 MIT, UChicago Argonne LLC, and "
"contributors\nMIT/X license at " "contributors\nMIT/X license at "
"<https://docs.openmc.org/en/latest/license.html>\n"); "<https://docs.openmc.org/en/latest/license.html>\n");
} }