Skip to content

Commit 0d8d2d9

Browse files
committed
v0.9.1
1 parent 2ca2908 commit 0d8d2d9

File tree

5 files changed

+31
-9
lines changed

5 files changed

+31
-9
lines changed

CADETProcess/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111
# Version information
1212
name = "CADET-Process"
13-
__version__ = "0.9.0"
13+
__version__ = "0.9.1"
1414

1515
# Imports
1616
from .CADETProcessError import *

docs/source/release_notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ v0.7.2
1111
v0.7.3
1212
v0.8.0
1313
v0.9.0
14+
v0.9.1
1415
```

docs/source/release_notes/template.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# v0.7.0
22

33
**CADET-Process** v0.7.0 is the culmination of 10 months of hard work.
4-
It contains many new features, numerous bug-fixes, improved test coverage and better
5-
documentation.
4+
It contains many new features, numerous bug-fixes, improved test coverage and better documentation.
65
There have been a number of deprecations and API changes in this release, which are documented below.
7-
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and
8-
optimizations.
9-
Before upgrading, we recommend that users check that their own code does not use deprecated CADET-Process functionality (to do so, run your code with ``python -Wd`` and check for ``DeprecationWarning`` s).
6+
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations.
7+
Before upgrading, we recommend that users check that their own code does not use deprecated **CADET-Process** functionality (to do so, run your code with ``python -Wd`` and check for ``DeprecationWarning``).
108

11-
This release requires Python 3.8+
9+
This release requires Python 3.10+
1210

1311
## Highlights and new features of this release
1412

docs/source/release_notes/v0.9.0.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# v0.9.0
22

33
**CADET-Process** v0.9.0 is the culmination of 6 months of hard work.
4-
It contains many new features, numerous bug-fixes, improved test coverage and better
5-
documentation.
4+
It contains many new features, numerous bug-fixes, improved test coverage and better documentation.
65
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations.
76

87
This release requires Python 3.9+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# v0.9.1
2+
3+
**CADET-Process** v0.9.1 is a hotfix release which fixes a couple of minor issues.
4+
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations.
5+
6+
This release requires Python 3.10+
7+
8+
## Highlights and new features of this release
9+
10+
- Fix updating {class}`~CADETProcess.optimization.ParetoFront` with a from a {class}`~CADETProcess.optimization.Population`.
11+
- Add option to instantiate a {class}`~CADETProcess.optimization.Population` from an {class}`~CADETProcess.optimization.OptimizationProblem`.
12+
- Add option to include meta scores and infeasible points in {meth}`~CADETProcess.optimization.Population.plot_pareto`.
13+
- Add option to set time axis in plots to seconds.
14+
- Migrate to `pyproject.toml`.
15+
16+
## Issues closed for 0.9.1
17+
18+
- [121](https://github.com/fau-advanced-separations/CADET-Process/issues/121): optimization_problem.evaluate_callbacks(ind) doesn't evaluate if callback frequency is set to != 1
19+
20+
## Pull requests for 0.9.1
21+
22+
- [122](https://github.com/fau-advanced-separations/CADET-Process/pull/122): Extend example of binding parameter estimation to include parameter transformation
23+
- [125](https://github.com/fau-advanced-separations/CADET-Process/pull/125): Use seconds in plot time axis
24+
- [126](https://github.com/fau-advanced-separations/CADET-Process/pull/126): AxInterface Runner `staging_required` should be a property

0 commit comments

Comments
 (0)