mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Move version number to 0.12.1-dev
This commit is contained in:
parent
93d6165ecb
commit
dea78c9be5
3 changed files with 4 additions and 4 deletions
|
|
@ -81,7 +81,7 @@ copyright = '2011-2020, Massachusetts Institute of Technology and OpenMC contrib
|
|||
# The short X.Y version.
|
||||
version = "0.12"
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = "0.12.0"
|
||||
release = "0.12.1-dev"
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
|
|
@ -21,8 +21,8 @@ using double_4dvec = std::vector<std::vector<std::vector<std::vector<double>>>>;
|
|||
// OpenMC major, minor, and release numbers
|
||||
constexpr int VERSION_MAJOR {0};
|
||||
constexpr int VERSION_MINOR {12};
|
||||
constexpr int VERSION_RELEASE {0};
|
||||
constexpr bool VERSION_DEV {false};
|
||||
constexpr int VERSION_RELEASE {1};
|
||||
constexpr bool VERSION_DEV {true};
|
||||
constexpr std::array<int, 3> VERSION {VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE};
|
||||
|
||||
// HDF5 data format
|
||||
|
|
|
|||
|
|
@ -34,4 +34,4 @@ from . import examples
|
|||
# Import a few convencience functions that used to be here
|
||||
from openmc.model import rectangular_prism, hexagonal_prism
|
||||
|
||||
__version__ = '0.12.0'
|
||||
__version__ = '0.12.1-dev'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue