From 5d130d68f836ce50cf7358b7de49b05f5fae2f6a Mon Sep 17 00:00:00 2001
From: Timothe Jost <timothe.jost@wanadoo.fr>
Date: Thu, 15 May 2025 19:14:56 +0200
Subject: [PATCH] little update on the readme

---
 README.md                 | 1 +
 src/pypelines/__init__.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 05dc1ac..0ed8f26 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 0fbab59..ce3e6aa 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 *
-- 
GitLab