Remove -dev tag from version number

This commit is contained in:
Paul Romano 2021-03-22 15:32:27 -05:00
parent e6bee33a14
commit 9f37f1ada1
3 changed files with 4 additions and 3 deletions

View file

@ -72,7 +72,7 @@ copyright = '2011-2021, 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.1-dev"
release = "0.12.1"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -215,6 +215,7 @@ latex_elements = {
\hypersetup{bookmarksdepth=3}
\setcounter{tocdepth}{2}
\numberwithin{equation}{section}
\DeclareUnicodeCharacter{03B1}{$\alpha$}
""",
'printindex': r""
}

View file

@ -6,7 +6,7 @@ namespace openmc {
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};
}

View file

@ -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.1-dev'
__version__ = '0.12.1'