diff --git a/README.md b/README.md
index 7c41fe8bb6fb3d166a58b8f2ed2843a56d832e67..1dfaba45d3ca829e7bce3877eec73ac4e91abbf5 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
 Clone this repository and install COMBO (we suggest creating a virtualenv/conda environment with Python 3.6+, as a bundle of required packages will be installed):
 ```bash
 pip install -U pip setuptools wheel
-pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.1
+pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.2
 ```
 Run the following commands in your Python console to make predictions with a pre-trained model:
 ```python
diff --git a/docs/installation.md b/docs/installation.md
index 7cf539b5550704747e4bbeac58f9e8f021b4db56..36ade5131bf23e749a684797a023393392b4131a 100644
--- a/docs/installation.md
+++ b/docs/installation.md
@@ -2,7 +2,7 @@
 Clone this repository and install COMBO (we suggest using virtualenv/conda with Python 3.6+):
 ```bash
 pip install -U pip setuptools wheel
-pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.1
+pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.2
 combo --helpfull
 ```
 
@@ -11,7 +11,7 @@ combo --helpfull
 python -m venv venv
 source venv/bin/activate
 pip install -U pip setuptools wheel
-pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.1
+pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.2
 ```
 
 ### Conda example:
diff --git a/setup.py b/setup.py
index 002d99058655454e3445d26b13debc25f20dc397..5012ea9feb593085d93d8c0f895f8909e949b1a9 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ REQUIREMENTS = [
 
 setup(
     name='combo',
-    version='1.0.1',
+    version='1.0.2',
     author='Mateusz Klimaszewski',
     author_email='M.Klimaszewski@ii.pw.edu.pl',
     install_requires=REQUIREMENTS,