Skip to content

Commit b7aed36

Browse files
committed
Incremented version number to 0.6.2 and added release notes
1 parent 4025e92 commit b7aed36

File tree

4 files changed

+61
-2
lines changed

4 files changed

+61
-2
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# The short X.Y version.
4949
version = "0.6"
5050
# The full version, including alpha/beta/rc tags.
51-
release = "0.6.1"
51+
release = "0.6.2"
5252

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

docs/source/releasenotes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ bugs fixed, and known issues for each successive release.
1010
.. toctree::
1111
:maxdepth: 1
1212

13+
notes_0.6.2
1314
notes_0.6.1
1415
notes_0.6.0
1516
notes_0.5.4
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
.. _notes_0.6.2:
2+
3+
==============================
4+
Release Notes for OpenMC 0.6.2
5+
==============================
6+
7+
-------------------
8+
System Requirements
9+
-------------------
10+
11+
There are no special requirements for running the OpenMC code. As of this
12+
release, OpenMC has been tested on a variety of Linux distributions, Mac OS X,
13+
and Microsoft Windows 7. Memory requirements will vary depending on the size of
14+
the problem at hand (mostly on the number of nuclides in the problem).
15+
16+
------------
17+
New Features
18+
------------
19+
20+
- Meshline plotting capability
21+
- Support for plotting cells/materials on middle universe levels
22+
- Ability to model cells with no surfaces
23+
- Compatibility with PETSc 3.5
24+
- Compatability with OpenMPI 1.7/1.8
25+
- Improved overall performance via logarithmic-mapped energy grid search
26+
- Improved multi-threaded performance with atomic operations
27+
- Support for fixed source problems with fissionable materials
28+
29+
---------
30+
Bug Fixes
31+
---------
32+
33+
- 26fb93_: Fix problem with -t, --track command-line flag
34+
- 2f07c0_: Improved evaporation spectrum algorithm
35+
- e6abb9_: Fix segfault when tallying in a void material
36+
- 291b45_: Handle metastable nuclides in NNDC data and multiplicities in MT=5 data
37+
38+
.. _26fb93: https://github.com/mit-crpg/openmc/commit/26fb93
39+
.. _2f07c0: https://github.com/mit-crpg/openmc/commit/2f07c0
40+
.. _e6abb9: https://github.com/mit-crpg/openmc/commit/e6abb9
41+
.. _291b45: https://github.com/mit-crpg/openmc/commit/291b45
42+
43+
------------
44+
Contributors
45+
------------
46+
47+
This release contains new contributions from the following people:
48+
49+
- `Will Boyd <[email protected]>`_
50+
- `Matt Ellis <[email protected]>`_
51+
- `Sterling Harper <[email protected]>`_
52+
- `Bryan Herman <[email protected]>`_
53+
- `Nicholas Horelik <[email protected]>`_
54+
- `Anton Leontiev <[email protected]>`_
55+
- `Adam Nelson <[email protected]>`_
56+
- `Paul Romano <[email protected]>`_
57+
- `Jon Walsh <[email protected]>`_
58+
- `John Xia <[email protected]>`_

src/constants.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module constants
88
! OpenMC major, minor, and release numbers
99
integer, parameter :: VERSION_MAJOR = 0
1010
integer, parameter :: VERSION_MINOR = 6
11-
integer, parameter :: VERSION_RELEASE = 1
11+
integer, parameter :: VERSION_RELEASE = 2
1212

1313
! Revision numbers for binary files
1414
integer, parameter :: REVISION_STATEPOINT = 13

0 commit comments

Comments
 (0)