From fcbe9d36c45c9f0545b51961018455cf1f8aca65 Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Fri, 5 Jul 2024 12:37:31 +0200 Subject: [PATCH 1/3] fix: typo; wrong diffusivity value --- amico/models.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amico/models.pyx b/amico/models.pyx index 73e19f2..d7340c6 100644 --- a/amico/models.pyx +++ b/amico/models.pyx @@ -674,7 +674,7 @@ class NODDI( BaseModel ) : def set( self, - dPar=1.7E-33, + dPar=1.7E-3, dIso=3.0E-3, IC_VFs=np.linspace(0.1, 0.99, 12), IC_ODs=np.hstack((np.array([0.03, 0.06]), np.linspace(0.09, 0.99, 10))), From 3d511d099d650e425e75f8c3bd3bfcacbec8565f Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Fri, 5 Jul 2024 12:37:54 +0200 Subject: [PATCH 2/3] build: bump to v2.0.3 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 0a78da1..bfd89bc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dmri-amico -version = 2.0.2 +version = 2.0.3 url = https://github.com/daducci/AMICO download_url = https://pypi.org/project/dmri-amico project_urls = From 152c98bf72bcaecfe8221e34ef7292fb2a78cda4 Mon Sep 17 00:00:00 2001 From: nightwnvol Date: Fri, 5 Jul 2024 12:38:03 +0200 Subject: [PATCH 3/3] docs: update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 791b029..109b0ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Change Log ### All notable changes to `AMICO` will be documented in this file. +## `v2.0.3`
_2024-07-04_ +### 🐛Fixed +- Wrong diffusivity value in the `set()` method of the `NODDI` model (typo introduced in f070c23) + +--- +--- + ## `v2.0.2`
_2024-07-04_ ### ✨Added - Added `cp312` wheels to github actions