Skip to content

Commit 33bc948

Browse files
authored
Merge pull request #2182 from paulromano/release-0.13.1
Final change for release of version 0.13.1
2 parents 183d9c7 + 3bdf2dd commit 33bc948

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.1-dev"
74+
release = "0.13.1"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace openmc {
1010
constexpr int VERSION_MAJOR {@OPENMC_VERSION_MAJOR@};
1111
constexpr int VERSION_MINOR {@OPENMC_VERSION_MINOR@};
1212
constexpr int VERSION_RELEASE {@OPENMC_VERSION_RELEASE@};
13-
constexpr bool VERSION_DEV {true};
13+
constexpr bool VERSION_DEV {false};
1414
constexpr std::array<int, 3> VERSION {VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE};
1515
// clang-format on
1616

openmc/__init__.py

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

3939

40-
__version__ = '0.13.1-dev'
40+
__version__ = '0.13.1'

0 commit comments

Comments
 (0)