Skip to content

Commit e07fe06

Browse files
committed
Remove -dev tag from version number. Small updates to release notes
1 parent 54b43a5 commit e07fe06

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
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.11"
8383
# The full version, including alpha/beta/rc tags.
84-
release = "0.11.0-dev"
84+
release = "0.11.0"
8585

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

docs/source/releasenotes/0.11.0.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22
What's New in 0.11.0
33
====================
44

5-
.. note::
6-
These release notes are for a future release of OpenMC and are still subject
7-
to change. The new features and bug fixes documented here reflect the
8-
current status of the ``develop`` branch of OpenMC.
9-
105
.. currentmodule:: openmc
116

127
-------
@@ -90,6 +85,7 @@ Python API Changes
9085
Bug Fixes
9186
---------
9287

88+
- `Rotate azimuthal distributions correctly for source sampling <https://github.com/openmc-dev/openmc/pull/1363>`_
9389
- `Fix reading ASCII ACE tables in Python 3 <https://github.com/openmc-dev/openmc/pull/1176>`_
9490
- `Fix bug for distributed temperatures <https://github.com/openmc-dev/openmc/pull/1178>`_
9591
- `Fix bug for distance to boundary in complex cells <https://github.com/openmc-dev/openmc/pull/1172>`_
@@ -108,6 +104,7 @@ This release contains new contributions from the following people:
108104
- `Brody Bassett <https://github.com/brbass>`_
109105
- `Will Boyd <https://github.com/wbinventor>`_
110106
- `Andrew Davis <https://github.com/makeclean>`_
107+
- `Iurii Drobyshev <https://github.com/dryuri92>`_
111108
- `Guillaume Giudicelli <https://github.com/GiudGiud>`_
112109
- `Brittany Grayson <https://github.com/graybri3>`_
113110
- `Zhuoran Han <https://github.com/hanzhuoran>`_
@@ -125,10 +122,12 @@ This release contains new contributions from the following people:
125122
- `Isaac Meyer <https://github.com/icmeyer>`_
126123
- `April Novak <https://github.com/aprilnovak>`_
127124
- `Adam Nelson <https://github.com/nelsonag>`_
125+
- `Gavin Ridley <https://github.com/gridley>`_
128126
- `Jose Salcedo Perez <https://github.com/salcedop>`_
129127
- `Paul Romano <https://github.com/paulromano>`_
130128
- `Sam Shaner <https://github.com/samuelshaner>`_
131129
- `Jonathan Shimwell <https://github.com/Shimwell>`_
132130
- `Patrick Shriwise <https://github.com/pshriwise>`_
133131
- `John Tramm <https://github.com/jtramm>`_
134132
- `Jiankai Yu <https://github.com/rockfool>`_
133+
- `Xiaokang Zhang <https://github.com/zxkjack123>`_

include/openmc/constants.h

Lines changed: 1 addition & 1 deletion
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 {11};
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

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.11.0-dev'
37+
__version__ = '0.11.0'

0 commit comments

Comments
 (0)