Skip to content

Commit def0898

Browse files
committed
Remove -dev tag from version number
1 parent c8639e1 commit def0898

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
# The short X.Y version.
7272
version = "0.13"
7373
# The full version, including alpha/beta/rc tags.
74-
release = "0.13.0-dev"
74+
release = "0.13.0"
7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation
7777
# for a list of supported languages.

include/openmc/version.h.in

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
namespace openmc {
44

55
// OpenMC major, minor, and release numbers
6+
// clang-format off
67
constexpr int VERSION_MAJOR {@OPENMC_VERSION_MAJOR@};
78
constexpr int VERSION_MINOR {@OPENMC_VERSION_MINOR@};
89
constexpr int VERSION_RELEASE {@OPENMC_VERSION_RELEASE@};
9-
constexpr bool VERSION_DEV {true};
10+
constexpr bool VERSION_DEV {false};
1011
constexpr std::array<int, 3> VERSION {VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE};
12+
// clang-format on
1113

12-
}
14+
} // namespace openmc

openmc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
from openmc.model import rectangular_prism, hexagonal_prism, Model
3737

3838

39-
__version__ = '0.13.0-dev'
39+
__version__ = '0.13.0'

0 commit comments

Comments
 (0)