mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Remove -dev tag from version number
This commit is contained in:
parent
e6bee33a14
commit
9f37f1ada1
3 changed files with 4 additions and 3 deletions
|
|
@ -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""
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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};
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue