Skip to content

Commit df54009

Browse files
authored
Merge pull request #192 from daducci/release/v2.0.3
[RELEASE] v2.0.3
2 parents 268efd5 + 152c98b commit df54009

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
### All notable changes to `AMICO` will be documented in this file.
33

4+
## `v2.0.3`<br>_2024-07-04_
5+
### 🐛Fixed
6+
- Wrong diffusivity value in the `set()` method of the `NODDI` model (typo introduced in f070c23)
7+
8+
---
9+
---
10+
411
## `v2.0.2`<br>_2024-07-04_
512
### ✨Added
613
- Added `cp312` wheels to github actions

amico/models.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ class NODDI( BaseModel ) :
674674

675675
def set(
676676
self,
677-
dPar=1.7E-33,
677+
dPar=1.7E-3,
678678
dIso=3.0E-3,
679679
IC_VFs=np.linspace(0.1, 0.99, 12),
680680
IC_ODs=np.hstack((np.array([0.03, 0.06]), np.linspace(0.09, 0.99, 10))),

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = dmri-amico
3-
version = 2.0.2
3+
version = 2.0.3
44
url = https://github.com/daducci/AMICO
55
download_url = https://pypi.org/project/dmri-amico
66
project_urls =

0 commit comments

Comments
 (0)