Skip to content

Commit 53b6d8a

Browse files
committed
Change 0.14.0 --> 0.13.2
1 parent a0e5ba4 commit 53b6d8a

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ project(openmc C CXX)
33

44
# Set version numbers
55
set(OPENMC_VERSION_MAJOR 0)
6-
set(OPENMC_VERSION_MINOR 14)
7-
set(OPENMC_VERSION_RELEASE 0)
6+
set(OPENMC_VERSION_MINOR 13)
7+
set(OPENMC_VERSION_RELEASE 2)
88
set(OPENMC_VERSION ${OPENMC_VERSION_MAJOR}.${OPENMC_VERSION_MINOR}.${OPENMC_VERSION_RELEASE})
99
configure_file(include/openmc/version.h.in "${CMAKE_BINARY_DIR}/include/openmc/version.h" @ONLY)
1010

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
# built documents.
7070
#
7171
# The short X.Y version.
72-
version = "0.14"
72+
version = "0.13"
7373
# The full version, including alpha/beta/rc tags.
74-
release = "0.14.0"
74+
release = "0.13.2"
7575

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

docs/source/releasenotes/0.14.0.rst renamed to docs/source/releasenotes/0.13.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
====================
2-
What's New in 0.14.0
2+
What's New in 0.13.2
33
====================
44

55
.. currentmodule:: openmc

docs/source/releasenotes/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Release Notes
77
.. toctree::
88
:maxdepth: 1
99

10-
0.14.0
10+
0.13.2
1111
0.13.1
1212
0.13.0
1313
0.12.2

openmc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
from openmc.model import rectangular_prism, hexagonal_prism, Model
3939

4040

41-
__version__ = '0.14.0-dev'
41+
__version__ = '0.13.2-dev'

openmc/data/decay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def decay_photon_energy(nuclide: str) -> Optional[Univariate]:
587587
for the first time, you need to ensure that a depletion chain has been
588588
specified in openmc.config['chain_file'].
589589
590-
.. versionadded:: 0.14.0
590+
.. versionadded:: 0.13.2
591591
592592
Parameters
593593
----------

openmc/deplete/stepresult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def distribute(self, local_materials, ranges):
202202
def get_material(self, mat_id):
203203
"""Return material object for given depleted composition
204204
205-
.. versionadded:: 0.14.0
205+
.. versionadded:: 0.13.2
206206
207207
Parameters
208208
----------

openmc/material.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class Material(IDManagerMixin):
9898
this distribution is the total intensity of the photon source in
9999
[decay/sec].
100100
101-
.. versionadded:: 0.14.0
101+
.. versionadded:: 0.13.2
102102
103103
"""
104104

@@ -825,7 +825,7 @@ def get_nuclides(self, element: Optional[str] = None):
825825
element : str
826826
Specifies the element to match when searching through the nuclides
827827
828-
.. versionadded:: 0.14.0
828+
.. versionadded:: 0.13.2
829829
830830
Returns
831831
-------
@@ -879,7 +879,7 @@ def get_nuclide_atom_densities(self, nuclide: Optional[str] = None):
879879
Nuclide for which atom density is desired. If not specified, the
880880
atom density for each nuclide in the material is given.
881881
882-
.. versionadded:: 0.14.0
882+
.. versionadded:: 0.13.2
883883
884884
Returns
885885
-------

openmc/stats/univariate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ def muir(e0, m_rat, kt):
729729
distribution: the mean energy of particles ``e0``, the mass of reactants
730730
``m_rat``, and the ion temperature ``kt``.
731731
732-
.. versionadded:: 0.14.0
732+
.. versionadded:: 0.13.2
733733
734734
Parameters
735735
----------

openmc/universe.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -658,17 +658,17 @@ class DAGMCUniverse(UniverseBase):
658658
as each material name present in the DAGMC h5m file must have a
659659
matching openmc.Material() with the same name.
660660
661-
.. versionadded:: 0.14.0
661+
.. versionadded:: 0.13.2
662662
n_cells : int
663663
The number of cells in the DAGMC model. This is the number of cells at
664664
runtime and accounts for the implicit complement whether or not is it
665665
present in the DAGMC file.
666666
667-
.. versionadded:: 0.14.0
667+
.. versionadded:: 0.13.2
668668
n_surfaces : int
669669
The number of surfaces in the model.
670670
671-
.. versionadded:: 0.14.0
671+
.. versionadded:: 0.13.2
672672
673673
"""
674674

0 commit comments

Comments
 (0)