Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚀🩹 v0.4.2 release preparation and bugfix backport for result consistency checking purposes #935

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.4.2 (2021-12-12)

### 🩹 Bug fixes

- 🩹🚧 Backport of bugfix #927 discovered in PR #860 related to initial_concentration normalization when saving results (#935).

### 🚧 Maintenance

- 🚇🚧 Updated 'gold standard' result comparison reference ([old](https://github.com/glotaran/pyglotaran-examples/commit/9b8591c668ad7383a908b853339966d5a5f7fe43) -> [new](https://github.com/glotaran/pyglotaran-examples/commit/fc5a5ca0c7fd8b224c85027b510a15717c696c7b))

## 0.4.1 (2021-09-07)

### ✨ Features
Expand Down
2 changes: 1 addition & 1 deletion glotaran/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

load_plugins()

__version__ = "0.4.1"
__version__ = "0.4.2"


def __getattr__(attribute_name: str):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def retrieve_decay_associated_data(model, dataset, dataset_descriptor, name):

matrix = k_matrix.full(compartments)
matrix_reduced = k_matrix.reduced(compartments)
a_matrix = k_matrix.a_matrix(dataset_descriptor.initial_concentration)
a_matrix = k_matrix.a_matrix(dataset_descriptor.initial_concentration.normalized())
rates = k_matrix.rates(dataset_descriptor.initial_concentration)
lifetimes = 1 / rates

Expand Down