diff --git a/README.md b/README.md
index affa601c0c63be1b9fef44c09e37b182594bc67d..4ef83a29034be2d606e875700bae8ef121341ad4 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 98d13b6b1df91bccca1c54270089d06a133d24b9..30e7df334037ae774af42564026fb483dcdc59df 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
 ```
 
 ## Problems & solutions
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,