Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
schmoelder committed May 3, 2024
1 parent efc951e commit 2063de5
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CADETProcess/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"""
# Version information
name = "CADET-Process"
__version__ = "0.9.0"
__version__ = "0.9.1"

# Imports
from .CADETProcessError import *
Expand Down
1 change: 1 addition & 0 deletions docs/source/release_notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ v0.7.2
v0.7.3
v0.8.0
v0.9.0
v0.9.1
```
10 changes: 4 additions & 6 deletions docs/source/release_notes/template.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# v0.7.0

**CADET-Process** v0.7.0 is the culmination of 10 months of hard work.
It contains many new features, numerous bug-fixes, improved test coverage and better
documentation.
It contains many new features, numerous bug-fixes, improved test coverage and better documentation.
There have been a number of deprecations and API changes in this release, which are documented below.
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and
optimizations.
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).
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations.
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``).

This release requires Python 3.8+
This release requires Python 3.10+

## Highlights and new features of this release

Expand Down
3 changes: 1 addition & 2 deletions docs/source/release_notes/v0.9.0.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# v0.9.0

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

This release requires Python 3.9+
Expand Down
24 changes: 24 additions & 0 deletions docs/source/release_notes/v0.9.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# v0.9.1

**CADET-Process** v0.9.1 is a hotfix release which fixes a couple of minor issues.
All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations.

This release requires Python 3.10+

## Highlights and new features of this release

- Fix updating {class}`~CADETProcess.optimization.ParetoFront` with a from a {class}`~CADETProcess.optimization.Population`.
- Add option to instantiate a {class}`~CADETProcess.optimization.Population` from an {class}`~CADETProcess.optimization.OptimizationProblem`.
- Add option to include meta scores and infeasible points in {meth}`~CADETProcess.optimization.Population.plot_pareto`.
- Add option to set time axis in plots to seconds.
- Migrate to `pyproject.toml`.

## Issues closed for 0.9.1

- [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

## Pull requests for 0.9.1

- [122](https://github.com/fau-advanced-separations/CADET-Process/pull/122): Extend example of binding parameter estimation to include parameter transformation
- [125](https://github.com/fau-advanced-separations/CADET-Process/pull/125): Use seconds in plot time axis
- [126](https://github.com/fau-advanced-separations/CADET-Process/pull/126): AxInterface Runner `staging_required` should be a property

0 comments on commit 2063de5

Please sign in to comment.