diff --git a/README.md b/README.md
index bc15e921bbf1d173d3f5f4af9ea52e9c3dc8ee9c..732262ef48f2420dd2a9dde66de5ffab71ef37b0 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.2
+pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.3
 ```
 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 36ade5131bf23e749a684797a023393392b4131a..6aba7f700f7c4647fb77c935a3e763d2d7aaa6ab 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.2
+pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.3
 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.2
+pip install --index-url https://pypi.clarin-pl.eu/simple combo==1.0.3
 ```
 
 ### Conda example:
diff --git a/setup.py b/setup.py
index 5012ea9feb593085d93d8c0f895f8909e949b1a9..e1354b76cf47145c09f9da140068b9a22f68a4d2 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ REQUIREMENTS = [
 
 setup(
     name='combo',
-    version='1.0.2',
+    version='1.0.3',
     author='Mateusz Klimaszewski',
     author_email='M.Klimaszewski@ii.pw.edu.pl',
     install_requires=REQUIREMENTS,