Skip to content

Commit

Permalink
bump: version 0.5.2 → 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eckelsjd committed Jan 9, 2025
1 parent 86a6a04 commit 7d4d5e8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## v0.6.0 (2025-01-09)

### Feat

- clean sample inputs and plot slice api
- overhead tracking and sorted fidelity evaluation
- adds flag for custom weighting functions during training
- adds reconstruction tolerance for svd

### Fix

- bug with component serializer dict validation
- more consistent tracking of model costs and allocation
- rank starts at 1 for svd reconstruction tolerance
- serialize system model_extra if builtin
- allow skipping nan in relative error
- fixes bug in load_from_file and allows nd object arrays for compression
- cushion turbojet test tolerance
- integrate field coords and object arrays for changing field shapes

### Refactor

- update PEP735 pyproject dependency groups
- rename sweep plots to slice

## v0.5.2 (2024-11-05)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "amisc"
version = "0.5.2"
version = "0.6.0"
description = "Efficient framework for building surrogates of multidisciplinary systems using the adaptive multi-index stochastic collocation (AMISC) technique."
authors = [
{name = "Joshua Eckels", email = "eckelsjd@umich.edu"},
Expand Down
2 changes: 1 addition & 1 deletion src/amisc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class Compression {
from amisc.utils import to_model_dataset, to_surrogate_dataset
from amisc.variable import Variable, VariableList

__version__ = "0.5.2"
__version__ = "0.6.0"
__all__ = ['System', 'Component', 'Variable', 'VariableList', 'FileLoader', 'YamlLoader',
'to_model_dataset', 'to_surrogate_dataset']

Expand Down

0 comments on commit 7d4d5e8

Please sign in to comment.