diff --git a/README.md b/README.md
index 05dc1ac1227e6d76bba0cf76c47966969504e416..0ed8f261906b68f00b8717a925f138440f3f6600 100644
--- a/README.md
+++ b/README.md
@@ -47,6 +47,7 @@ The most usefull parts that this package allows you do to is :
 
 To implement a Pipeline, you have to define at least a Step, attached inside a Pipe.
 Here is a simple example.
+In only 70 lines of code, it allows to perform the automatic chaining for 4 Steps, loading and writing of intermediate processing outputs, without the developper requiring to take care for any of it.
 You can test this example, and see the result on your own computer. (Two csv files located in the ``test/data`` folder of this repository will be used for demonstration purposes.)
 
 ```python
diff --git a/src/pypelines/__init__.py b/src/pypelines/__init__.py
index 0fbab59a1040bd8ac619ef186e7d1037bf8124bf..ce3e6aab9e8d62618d9708b803276434651245f6 100644
--- a/src/pypelines/__init__.py
+++ b/src/pypelines/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.0.84"
+__version__ = "0.0.85"
 
 from . import loggs
 from .pipes import *