diff --git a/cornac/__init__.py b/cornac/__init__.py
index 91aa32601e6d52bc4f99cb7eb69413f1a8fce331..0354a53ca6d634cc89d14c0bc9777272253dafef 100644
--- a/cornac/__init__.py
+++ b/cornac/__init__.py
@@ -23,4 +23,4 @@ from . import utils
 # Also importable from root
 from .experiment import Experiment
 
-__version__ = '1.13.1'
\ No newline at end of file
+__version__ = '1.13.2'
\ No newline at end of file
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 5db1c2262d9baa1e16840e7e81aa4e1258a75069..47498dbcff6c5e72fb91f433fa4ab594c2636cdb 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -26,7 +26,7 @@ author = 'Preferred.AI'
 # The short X.Y version
 version = '1.13'
 # The full version, including alpha/beta/rc tags
-release = '1.13.1'
+release = '1.13.2'
 
 
 # -- General configuration ---------------------------------------------------
diff --git a/setup.py b/setup.py
index 6a52e9e64fb3d6c6b752e52068afa86d0243eb5d..37deda7882cff36a072dced458df7866535e8f18 100644
--- a/setup.py
+++ b/setup.py
@@ -18,6 +18,17 @@ import sys
 import glob
 from setuptools import Extension, setup, find_packages
 
+
+"""
+Release instruction:
+    - Check that tests run correctly with all CI tools.
+    - Change __version__ in setup.py, cornac/__init__.py, docs/source/conf.py.
+    - Commit and release a version on GitHub, Actions will be triggered to build and upload to PyPI.
+    - Update conda-forge feedstock with new version and SHA256 hash of the new .tar.gz archive on PyPI (optional), the conda-forge bot will detect a new version and create PR after a while.
+    - Check on https://anaconda.org/conda-forge/cornac that new version is available for all platforms.
+"""
+
+
 try:
     import numpy as np
 except ImportError:
@@ -277,7 +288,7 @@ if USE_CYTHON:
 
 setup(
     name="cornac",
-    version="1.13.1",
+    version="1.13.2",
     description="A Comparative Framework for Multimodal Recommender Systems",
     long_description=long_description,
     long_description_content_type="text/markdown",