diff --git a/CHANGELOG.md b/CHANGELOG.md
index 77602da..344430b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
# Change Log
### All notable changes to `AMICO` will be documented in this file.
+## `v2.0.0`
_2023-09-21_
+### 🛠️Changed
+- Bump `dmri-dicelib` to `v1.0.1`
+
+### 🐛Fixed
+- Implement the `set()` method in the `VolumeFractions` model
+
+---
+---
+
## `v2.0.0`
_2023-09-14_
### 🛠️Changed
- From multiprocessing to `multithreading` (huge speedup in models fit! 🚀)
diff --git a/amico/models.pyx b/amico/models.pyx
index d4797a4..26712e0 100644
--- a/amico/models.pyx
+++ b/amico/models.pyx
@@ -1230,6 +1230,10 @@ class VolumeFractions( BaseModel ) :
self.maps_descr = [ ]
+ def set( self ) :
+ return
+
+
def get_params( self ) :
params = {}
params['id'] = self.id
diff --git a/requirements.txt b/requirements.txt
index 58164c9..5a35b64 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,5 +2,5 @@ numpy>=1.19.5
scipy>=1.5.4
dipy>=1.4.1
threadpoolctl>=3.1.0
-dmri-dicelib>=1.0.0
+dmri-dicelib>=1.0.1
importlib-metadata>=4.8.3; python_version<"3.8"
diff --git a/setup.cfg b/setup.cfg
index 5f0f0b7..d88b63a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = dmri-amico
-version = 2.0.0
+version = 2.0.1
url = https://github.com/daducci/AMICO
download_url = https://pypi.org/project/dmri-amico
project_urls =
@@ -38,7 +38,7 @@ install_requires =
scipy>=1.5.4
dipy>=1.4.1
threadpoolctl>=3.1.0
- dmri-dicelib>=1.0.0
+ dmri-dicelib>=1.0.1
importlib-metadata>=4.8.3; python_version<"3.8"
python_requires = >=3.6
packages =