Skip to content

Commit 3d11b98

Browse files
author
Andrew Johnson
authored
Merge pull request #368 from drewejohnson/rel-0.9.1
REL Release version 0.9.1
2 parents 2a7df99 + 71445b9 commit 3d11b98

File tree

5 files changed

+26
-3
lines changed

5 files changed

+26
-3
lines changed

docs/changelog.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@
66
Changelog
77
=========
88

9+
10+
.. _v0.9.1:
11+
12+
:release-tag:`0.9.1`
13+
====================
14+
15+
.. _v0.9.1-bugs:
16+
17+
Bug Fixes
18+
---------
19+
20+
* Sensitivity arrays generated with ``sens opt history 1`` will no longer
21+
overwrite the primary result arrays - :pull:`366`. These arrays are not
22+
currently stored - :issue:`367`
23+
24+
925
.. _v0.9.0:
1026

1127
:release-tag:`0.9.0`

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# |version| and |release|, also used in various other places throughout the
5353
# built documents.
5454

55-
version = "0.9.0a"
55+
version = "0.9.1"
5656

5757
# General information about the project.
5858
project = 'serpentTools'

serpentTools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from serpentTools.seed import *
88
from serpentTools.xs import *
99

10-
__version__ = "0.9.0"
10+
__version__ = "0.9.1"

serpentTools/parsers/sensitivity.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ class SensitivityReader(BaseReader):
5454
The matrices in :attr:`energyIntegratedSens` will have the same
5555
structure, but with the :attr:`energies` dimension removed.
5656
57+
58+
.. note::
59+
60+
Arrays generated using the history option ``sens opt history 1``
61+
are not currently stored on the reader. See feature request
62+
:issue:`367`
63+
5764
Parameters
5865
----------
5966
filePath : str

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def getDataFiles():
4242

4343
pythonRequires = ">=3.5,<3.8"
4444

45-
version = "0.9.0"
45+
version = "0.9.1"
4646

4747
setupArgs = {
4848
'name': 'serpentTools',

0 commit comments

Comments
 (0)