From 53b6d8ab11a300b8c8a373d5a62e558f90b5dade Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 19 Oct 2022 08:04:50 -0500 Subject: [PATCH] Change 0.14.0 --> 0.13.2 --- CMakeLists.txt | 4 ++-- docs/source/conf.py | 4 ++-- docs/source/releasenotes/{0.14.0.rst => 0.13.2.rst} | 2 +- docs/source/releasenotes/index.rst | 2 +- openmc/__init__.py | 2 +- openmc/data/decay.py | 2 +- openmc/deplete/stepresult.py | 2 +- openmc/material.py | 6 +++--- openmc/stats/univariate.py | 2 +- openmc/universe.py | 6 +++--- 10 files changed, 16 insertions(+), 16 deletions(-) rename docs/source/releasenotes/{0.14.0.rst => 0.13.2.rst} (99%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 04c712a17b..3fb04850cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,8 +3,8 @@ project(openmc C CXX) # Set version numbers set(OPENMC_VERSION_MAJOR 0) -set(OPENMC_VERSION_MINOR 14) -set(OPENMC_VERSION_RELEASE 0) +set(OPENMC_VERSION_MINOR 13) +set(OPENMC_VERSION_RELEASE 2) set(OPENMC_VERSION ${OPENMC_VERSION_MAJOR}.${OPENMC_VERSION_MINOR}.${OPENMC_VERSION_RELEASE}) configure_file(include/openmc/version.h.in "${CMAKE_BINARY_DIR}/include/openmc/version.h" @ONLY) diff --git a/docs/source/conf.py b/docs/source/conf.py index 98ccdee447..29b5ae84cd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -69,9 +69,9 @@ copyright = '2011-2022, Massachusetts Institute of Technology, UChicago Argonne # built documents. # # The short X.Y version. -version = "0.14" +version = "0.13" # The full version, including alpha/beta/rc tags. -release = "0.14.0" +release = "0.13.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/releasenotes/0.14.0.rst b/docs/source/releasenotes/0.13.2.rst similarity index 99% rename from docs/source/releasenotes/0.14.0.rst rename to docs/source/releasenotes/0.13.2.rst index a1f84adb59..e00a02baee 100644 --- a/docs/source/releasenotes/0.14.0.rst +++ b/docs/source/releasenotes/0.13.2.rst @@ -1,5 +1,5 @@ ==================== -What's New in 0.14.0 +What's New in 0.13.2 ==================== .. currentmodule:: openmc diff --git a/docs/source/releasenotes/index.rst b/docs/source/releasenotes/index.rst index 5753c8bae6..910737a414 100644 --- a/docs/source/releasenotes/index.rst +++ b/docs/source/releasenotes/index.rst @@ -7,7 +7,7 @@ Release Notes .. toctree:: :maxdepth: 1 - 0.14.0 + 0.13.2 0.13.1 0.13.0 0.12.2 diff --git a/openmc/__init__.py b/openmc/__init__.py index 214695e67f..bee851ae19 100644 --- a/openmc/__init__.py +++ b/openmc/__init__.py @@ -38,4 +38,4 @@ from .config import * from openmc.model import rectangular_prism, hexagonal_prism, Model -__version__ = '0.14.0-dev' +__version__ = '0.13.2-dev' diff --git a/openmc/data/decay.py b/openmc/data/decay.py index 29574e001b..8268d4a365 100644 --- a/openmc/data/decay.py +++ b/openmc/data/decay.py @@ -587,7 +587,7 @@ def decay_photon_energy(nuclide: str) -> Optional[Univariate]: for the first time, you need to ensure that a depletion chain has been specified in openmc.config['chain_file']. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 Parameters ---------- diff --git a/openmc/deplete/stepresult.py b/openmc/deplete/stepresult.py index e462f17542..c8b35a1fa2 100644 --- a/openmc/deplete/stepresult.py +++ b/openmc/deplete/stepresult.py @@ -202,7 +202,7 @@ class StepResult: def get_material(self, mat_id): """Return material object for given depleted composition - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 Parameters ---------- diff --git a/openmc/material.py b/openmc/material.py index 652ee89a93..1979b39588 100644 --- a/openmc/material.py +++ b/openmc/material.py @@ -98,7 +98,7 @@ class Material(IDManagerMixin): this distribution is the total intensity of the photon source in [decay/sec]. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 """ @@ -825,7 +825,7 @@ class Material(IDManagerMixin): element : str Specifies the element to match when searching through the nuclides - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 Returns ------- @@ -879,7 +879,7 @@ class Material(IDManagerMixin): Nuclide for which atom density is desired. If not specified, the atom density for each nuclide in the material is given. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 Returns ------- diff --git a/openmc/stats/univariate.py b/openmc/stats/univariate.py index 28f60de6d7..de8d08dedb 100644 --- a/openmc/stats/univariate.py +++ b/openmc/stats/univariate.py @@ -729,7 +729,7 @@ def muir(e0, m_rat, kt): distribution: the mean energy of particles ``e0``, the mass of reactants ``m_rat``, and the ion temperature ``kt``. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 Parameters ---------- diff --git a/openmc/universe.py b/openmc/universe.py index b74d98adb1..94ea5624ab 100644 --- a/openmc/universe.py +++ b/openmc/universe.py @@ -658,17 +658,17 @@ class DAGMCUniverse(UniverseBase): as each material name present in the DAGMC h5m file must have a matching openmc.Material() with the same name. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 n_cells : int The number of cells in the DAGMC model. This is the number of cells at runtime and accounts for the implicit complement whether or not is it present in the DAGMC file. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 n_surfaces : int The number of surfaces in the model. - .. versionadded:: 0.14.0 + .. versionadded:: 0.13.2 """