From e07fe0632319e40f4e9ca0f56402468b0b2070af Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Fri, 4 Oct 2019 14:27:55 -0500 Subject: [PATCH] Remove -dev tag from version number. Small updates to release notes --- docs/source/conf.py | 2 +- docs/source/releasenotes/0.11.0.rst | 9 ++++----- include/openmc/constants.h | 2 +- openmc/__init__.py | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f46b11334b6..f54a8df0e7f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -81,7 +81,7 @@ # The short X.Y version. version = "0.11" # The full version, including alpha/beta/rc tags. -release = "0.11.0-dev" +release = "0.11.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/releasenotes/0.11.0.rst b/docs/source/releasenotes/0.11.0.rst index ba9a35d1af4..221d576580d 100644 --- a/docs/source/releasenotes/0.11.0.rst +++ b/docs/source/releasenotes/0.11.0.rst @@ -2,11 +2,6 @@ What's New in 0.11.0 ==================== -.. note:: - These release notes are for a future release of OpenMC and are still subject - to change. The new features and bug fixes documented here reflect the - current status of the ``develop`` branch of OpenMC. - .. currentmodule:: openmc ------- @@ -90,6 +85,7 @@ Python API Changes Bug Fixes --------- +- `Rotate azimuthal distributions correctly for source sampling `_ - `Fix reading ASCII ACE tables in Python 3 `_ - `Fix bug for distributed temperatures `_ - `Fix bug for distance to boundary in complex cells `_ @@ -108,6 +104,7 @@ This release contains new contributions from the following people: - `Brody Bassett `_ - `Will Boyd `_ - `Andrew Davis `_ +- `Iurii Drobyshev `_ - `Guillaume Giudicelli `_ - `Brittany Grayson `_ - `Zhuoran Han `_ @@ -125,6 +122,7 @@ This release contains new contributions from the following people: - `Isaac Meyer `_ - `April Novak `_ - `Adam Nelson `_ +- `Gavin Ridley `_ - `Jose Salcedo Perez `_ - `Paul Romano `_ - `Sam Shaner `_ @@ -132,3 +130,4 @@ This release contains new contributions from the following people: - `Patrick Shriwise `_ - `John Tramm `_ - `Jiankai Yu `_ +- `Xiaokang Zhang `_ diff --git a/include/openmc/constants.h b/include/openmc/constants.h index 51df59accf6..046a7abefd8 100644 --- a/include/openmc/constants.h +++ b/include/openmc/constants.h @@ -22,7 +22,7 @@ using double_4dvec = std::vector>>>; constexpr int VERSION_MAJOR {0}; constexpr int VERSION_MINOR {11}; constexpr int VERSION_RELEASE {0}; -constexpr bool VERSION_DEV {true}; +constexpr bool VERSION_DEV {false}; constexpr std::array VERSION {VERSION_MAJOR, VERSION_MINOR, VERSION_RELEASE}; // HDF5 data format diff --git a/openmc/__init__.py b/openmc/__init__.py index 1195db725e1..f1703dfea00 100644 --- a/openmc/__init__.py +++ b/openmc/__init__.py @@ -34,4 +34,4 @@ # Import a few convencience functions that used to be here from openmc.model import rectangular_prism, hexagonal_prism -__version__ = '0.11.0-dev' +__version__ = '0.11.0'