diff --git a/README.md b/README.md
index 3075867..d1b5299 100644
--- a/README.md
+++ b/README.md
@@ -16,15 +16,15 @@ Running tests with `pytest-xdist` with multiple workers, evenly distributing slo
### Example
Consider a test suite with six tests, each taking varying amounts of time to run:
-![Test Suite](https://github.com/joaovitorsilvestre/pytest-slow-first/blob/master/docs/assets/test_suite.png?raw=true)
+
Running this suite with two workers using only `pytest-xdist` might result in uneven distribution:
-![Default xdist Distribution](https://github.com/joaovitorsilvestre/pytest-slow-first/blob/master/docs/assets/only_xdist.png?raw=true)
+
However, with `pytest-slow-first`, the same suite will be executed more efficiently and takes less time to finish, as shown below:
-![xdist and slow-first Distribution](https://github.com/joaovitorsilvestre/pytest-slow-first/blob/master/docs/assets/xdist_and_slow_first.png?raw=true)
+
## Usage
diff --git a/setup.py b/setup.py
index e941830..68aea73 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ def read(fname):
setup(
name='pytest-slow-first',
- version='1.0.2',
+ version='1.0.3',
author='João Vitor Silvestre',
author_email='joao_vitor_silvestre@outlook.com',
maintainer='João Vitor Silvestre',