diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 27cb2d651a9572e37609ea6e49bb2659bb618532..57c9c42d389910f0120fd827788b30637f7c0398 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -119,6 +119,8 @@ docs:
   stage: Documentation
   rules:
     - changes:
+        - "*.txt"
+        - "*.md"
         - mkdocs.yml
         - doc/*
         - pyotb/*.py
diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt
index 3086078f8eb85fdd642ee996769ca9f3c7ebe090..d7f6094769170ed1c7bda85144efd50e2bff4983 100644
--- a/RELEASE_NOTES.txt
+++ b/RELEASE_NOTES.txt
@@ -1,3 +1,25 @@
+---------------------------------------------------------------------
+2.00 (Nov 23, 2023) - Changes since version 1.5.4
+
+- Major refactoring (see troubleshooting/migration)
+- Pythonic extended filenames (can use dict, etc)
+- Easy access to image metadata
+- CI improvements (tests, coverage, doc, etc)
+- Documentation improvement
+- Code format
+- Allow OTB dotted parameters in kwargs
+- Easy access to pixel coordinates
+- Add function to transform x,y coordinates into row, col
+- Native support of vsicurl inputs
+- Fixes and enhancements in `summarize()`
+- Fixes in `shape`
+- Add typing to function defs to enhance documentation
+
+---------------------------------------------------------------------
+1.5.4 (Oct 01, 2022) - Changes since version 1.5.3
+
+- Fix slicer wrong end of slicing
+
 ---------------------------------------------------------------------
 1.5.3 (Sep 29, 2022) - Changes since version 1.5.2
 
diff --git a/pyotb/__init__.py b/pyotb/__init__.py
index 5e74f37a3b058dad604f4f5ab710c09829786456..5b455abe8a07775d7b5e865053e6641867bd246d 100644
--- a/pyotb/__init__.py
+++ b/pyotb/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 """This module provides convenient python wrapping of otbApplications."""
-__version__ = "2.0.0.dev8"
+__version__ = "2.0.0"
 
 from .install import install_otb
 from .helpers import logger, set_logger_level