Skip to content

Commit 2549c70

Browse files
committed
Remove -dev tag from version number
1 parent 1040276 commit 2549c70

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
# The short X.Y version.
8282
version = "0.12"
8383
# The full version, including alpha/beta/rc tags.
84-
release = "0.12.0-dev"
84+
release = "0.12.0"
8585

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

include/openmc/constants.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ using double_4dvec = std::vector<std::vector<std::vector<std::vector<double>>>>;
2222
constexpr int VERSION_MAJOR {0};
2323
constexpr int VERSION_MINOR {12};
2424
constexpr int VERSION_RELEASE {0};
25-
constexpr bool VERSION_DEV {true};
25+
constexpr bool VERSION_DEV {false};
2626
constexpr std::array<int, 3> VERSION {VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE};
2727

2828
// HDF5 data format
@@ -256,7 +256,7 @@ enum class URRTableParam {
256256
ELASTIC,
257257
FISSION,
258258
N_GAMMA,
259-
HEATING
259+
HEATING
260260
};
261261

262262
// Maximum number of partial fission reactions
@@ -328,7 +328,7 @@ enum class TallyEvent {
328328
LATTICE,
329329
KILL,
330330
SCATTER,
331-
ABSORB
331+
ABSORB
332332
};
333333

334334
// Tally score type -- if you change these, make sure you also update the
@@ -359,10 +359,10 @@ enum TallyScore {
359359
// Global tally parameters
360360
constexpr int N_GLOBAL_TALLIES {4};
361361
enum class GlobalTally {
362-
K_COLLISION,
363-
K_ABSORPTION,
364-
K_TRACKLENGTH,
365-
LEAKAGE
362+
K_COLLISION,
363+
K_ABSORPTION,
364+
K_TRACKLENGTH,
365+
LEAKAGE
366366
};
367367

368368
// Miscellaneous

openmc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
# Import a few convencience functions that used to be here
3535
from openmc.model import rectangular_prism, hexagonal_prism
3636

37-
__version__ = '0.12.0-dev'
37+
__version__ = '0.12.0'

0 commit comments

Comments
 (0)