Merge pull request #1967 from paulromano/release-0.13.0

Final change for version 0.13.0
This commit is contained in:
Amanda Lund 2022-02-14 10:27:26 -06:00 committed by GitHub
commit cff247e357
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -71,7 +71,7 @@ copyright = '2011-2022, Massachusetts Institute of Technology, UChicago Argonne
# The short X.Y version.
version = "0.13"
# The full version, including alpha/beta/rc tags.
release = "0.13.0-dev"
release = "0.13.0"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -3,10 +3,12 @@
namespace openmc {
// OpenMC major, minor, and release numbers
// clang-format off
constexpr int VERSION_MAJOR {@OPENMC_VERSION_MAJOR@};
constexpr int VERSION_MINOR {@OPENMC_VERSION_MINOR@};
constexpr int VERSION_RELEASE {@OPENMC_VERSION_RELEASE@};
constexpr bool VERSION_DEV {true};
constexpr bool VERSION_DEV {false};
constexpr std::array<int, 3> VERSION {VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE};
// clang-format on
}
} // namespace openmc

View file

@ -36,4 +36,4 @@ from . import examples
from openmc.model import rectangular_prism, hexagonal_prism, Model
__version__ = '0.13.0-dev'
__version__ = '0.13.0'