diff --git a/README.md b/README.md
index 8cbf1ed363dcd1bc342e3ab019aad8affc988761..510fbe8ccac19f0646a7bfacff64d9a0e9793e7d 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ The latest documentation of this package can be found in our readthedocs site:
 [latest API documentation](http://biobb_common.readthedocs.io/en/latest/).
 
 ### Version
-v2.0.0 2019.4
+v2.0.1 2019.4
 
 ### Copyright & Licensing
 This software has been developed in the [MMB group](http://mmb.irbbarcelona.org) at the [BSC](http://www.bsc.es/) & [IRB](https://www.irbbarcelona.org/) for the [European BioExcel](http://bioexcel.eu/), funded by the European Commission (EU H2020 [823830](http://cordis.europa.eu/projects/823830), EU H2020 [675728](http://cordis.europa.eu/projects/675728)).
diff --git a/biobb_common/configuration/settings.py b/biobb_common/configuration/settings.py
index 4f47a21a431318a945c909ccd38ab3a45db4eefe..4844be94f9efb49046bd7fb1bf80bbe166549239 100644
--- a/biobb_common/configuration/settings.py
+++ b/biobb_common/configuration/settings.py
@@ -4,6 +4,31 @@
 
 This module contains the classes to read the different formats of the
 configuration files.
+
+The configuration files are composed by paths to the files and properties. There are several common properties for all
+the building blocks.
+
+Syntax:
+* **property** (*dataType) - (Default value) Short description.
+
+Available Workflow properties:
+* **working_dir_path** (*str*) - (Current working dir) Directory where the workflow outputs will be created.
+* **can_write_console_log** (*bool*) - (True) Output log to console.
+* **restart** (*bool*) - (False) Do not execute steps if output files are already created.
+* **remove_tmp** (*bool*) - (True) Remove temporal files.
+
+Available common step properties: (Each Biobb step also has their specific properties)
+* **can_write_console_log** (*bool*) - (True) Overwrite **can_write_console_log** workflow property on this step.
+* **restart** (*bool*) - (False) Overwrite **restart** workflow property on this step.
+* **remove_tmp** (*bool*) - (True) Overwrite **remove_tmp** workflow property on this step.
+
+Available common step properties for containerized applications:
+* **container_path** (*string*) - (None)  Path to the binary executable of your container.
+* **container_image** (*string*) - (None) Container Image identifier.
+* **container_volume_path** (*string*) - (None) Path to an internal directory in the container.
+* **container_working_dir** (*string*) - (None) Path to the internal CWD in the container.
+* **container_user_id** (*string*) - (None) User number id to be mapped inside the container.
+* **container_shell_path** (*string*) - ("/bin/bash") Path to the binary executable of the container shell.
 """
 
 import yaml
@@ -149,7 +174,6 @@ class ConfReader():
                 prop_dic['restart']= self.properties.get('restart', False)
                 prop_dic['remove_tmp']= self.properties.get('remove_tmp', True)
 
-
         return prop_dic
 
     def get_paths_dic(self, prefix=None):
diff --git a/biobb_common/docs/source/readme.md b/biobb_common/docs/source/readme.md
index 8cbf1ed363dcd1bc342e3ab019aad8affc988761..510fbe8ccac19f0646a7bfacff64d9a0e9793e7d 100644
--- a/biobb_common/docs/source/readme.md
+++ b/biobb_common/docs/source/readme.md
@@ -17,7 +17,7 @@ The latest documentation of this package can be found in our readthedocs site:
 [latest API documentation](http://biobb_common.readthedocs.io/en/latest/).
 
 ### Version
-v2.0.0 2019.4
+v2.0.1 2019.4
 
 ### Copyright & Licensing
 This software has been developed in the [MMB group](http://mmb.irbbarcelona.org) at the [BSC](http://www.bsc.es/) & [IRB](https://www.irbbarcelona.org/) for the [European BioExcel](http://bioexcel.eu/), funded by the European Commission (EU H2020 [823830](http://cordis.europa.eu/projects/823830), EU H2020 [675728](http://cordis.europa.eu/projects/675728)).
diff --git a/biobb_common/json_schemas/biobb_common.json b/biobb_common/json_schemas/biobb_common.json
index 41c6c8715f935eceab546351c5a63d10c7ff776a..66eeee6b0fb1285a6254fc5ed18b63975b287d33 100644
--- a/biobb_common/json_schemas/biobb_common.json
+++ b/biobb_common/json_schemas/biobb_common.json
@@ -6,7 +6,7 @@
     "conda": "https://anaconda.org/bioconda/biobb_common",
     "docker": "https://quay.io/repository/biocontainers/biobb_common",
     "singularity": "https://www.singularity-hub.org/collections/2734/usage",
-    "version": "2.0.0",
+    "version": "2.0.1",
     "tools" : [
         {
             "block" : "", 
diff --git a/setup.py b/setup.py
index de0cb575646b3d4b864fc1d11f81009b0d4c8702..6e02b460e63a1283aa0bd4c56f8e5a9098c27110 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
 
 setuptools.setup(
     name="biobb_common",
-    version="2.0.0",
+    version="2.0.1",
     author="Biobb developers",
     author_email="pau.andrio@bsc.es",
     description="Biobb_common is the base package required to use the biobb packages.",