new version
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 2076f02..dd72cce 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.0.3
+current_version = 0.0.4
 
 [bumpversion:file:marvin_python_toolbox/VERSION]
 
diff --git a/CHANGES.md b/CHANGES.md
index 6e8bee9..f88edae 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,24 @@
 ## Changes log
 
+### 0.0.4
+
+   - Docs.yaml file update for metrics api
+   - Some adjustments in toolbox and template makefiles #104
+   - Removing some commands by install mode (dev and prod) #104
+   - Moving autocomplete and notebook extension from toolbox setup to engine template setup. Close #107
+   - Separating tests dependencies and creating a new make command. close #100
+   - Metrics as json and Keras serializser to Closes #86 and Closes #98
+   - Saving and loading metrics artifacts as json files to Fix #98
+   - Adding a symlink to the data path on engine generate. close #93
+   - Marvin is now installable with pip. fix #84
+   - ASCII encode error fix for accented words in predict message
+   - Add Jupyter Lab command. Fix #85
+   - Cli parameter conflit fix
+   - New param to force reload #80
+   - Improving test coverage
+   - New python binary parameter to be used in the creation of virtual env
+   - Fix tornado 4.5.3 and pip 9.0.1
+
 ### 0.0.3
 
 	- Python 3 support general compatibility refactoring (#68)
diff --git a/README.md b/README.md
index 96fb363..929f8e6 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 [![Join the chat at https://gitter.im/gitterHQ/gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/marvin-ai)
 
-# Marvin Toolbox v0.0.3
+# Marvin Toolbox v0.0.4
 
 ![](https://images-americanas.b2w.io/img/_staging/marvin/marvin.png)
 
diff --git a/marvin_python_toolbox/VERSION b/marvin_python_toolbox/VERSION
index bcab45a..81340c7 100644
--- a/marvin_python_toolbox/VERSION
+++ b/marvin_python_toolbox/VERSION
@@ -1 +1 @@
-0.0.3
+0.0.4
diff --git a/marvin_python_toolbox/management/templates/python-engine/setup.py b/marvin_python_toolbox/management/templates/python-engine/setup.py
index 9cc229b..9c62e06 100644
--- a/marvin_python_toolbox/management/templates/python-engine/setup.py
+++ b/marvin_python_toolbox/management/templates/python-engine/setup.py
@@ -162,7 +162,7 @@
         'numpy==1.13.1',
         'pandas==0.20.3',
         'matplotlib==2.0.2',
-        'marvin-python-toolbox==0.0.3',
+        'marvin-python-toolbox==0.0.4',
         'Fabric==1.14.0',
     ],
     tests_require=REQUIREMENTS_TESTS,