diff --git a/.easya_info.json b/.easya_info.json
index fa57c605d73280a4bf3882069842557f5d0d17ed..8ae61015c8bab469e5b0321c5be737ef8c90f12b 100644
--- a/.easya_info.json
+++ b/.easya_info.json
@@ -1,6 +1,6 @@
 {
     "dlb_min_version": 14,
-    "dlb_max_version": 20,
+    "dlb_max_version": 21,
     "php_min_version": 7.1,
     "php_max_version": 8.2
-}
\ No newline at end of file
+}
diff --git a/ChangeLog.md b/ChangeLog.md
index d65281a44b1083d7d4dc369f6e2cfc7d09e301bd..ffa6b73e5ddb21fef7064de0b4a005d768361732 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -3,6 +3,9 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
 
 ## [Non Distribué]
 
+## [14.0.11] - 10-02-2025
+- Compatibilité V21
+
 ## [14.0.10] - 30-11-2024
 - Compatibilité V20
 
@@ -42,7 +45,8 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
 ## [4.0.0] - 06-09-2017
 - Version initial.
 
-[Non Distribué]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/compare/14.0.10...HEAD
+[Non Distribué]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/compare/14.0.11...HEAD
+[14.0.11]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/14.0.11
 [14.0.10]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/14.0.10
 [4.0.9]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/4.0.9
 [4.0.8]: http://git.open-dsi.fr/dolibarr-extension/massupdaterights/commits/4.0.8
diff --git a/FEATURES.md b/FEATURES.md
new file mode 100755
index 0000000000000000000000000000000000000000..46a8fc878cc12b42c6925967235ba7e2c34c1c27
--- /dev/null
+++ b/FEATURES.md
@@ -0,0 +1,2 @@
+Module MassUpdateRights
+=======================
\ No newline at end of file
diff --git a/VERSION b/VERSION
index 150937ce056a9d9c4ac1beaba9832349c8a9c680..6bd3187361618114ff46b9f0f3092d1248b560bc 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-14.0.10
\ No newline at end of file
+14.0.11
\ No newline at end of file
diff --git a/core/modules/modMassUpdateRights.class.php b/core/modules/modMassUpdateRights.class.php
index b5ad8121a6954702bb0899d288182e0a74cbb52c..bc3315539b6176fefc2059c0bdfe52b1789aa17c 100644
--- a/core/modules/modMassUpdateRights.class.php
+++ b/core/modules/modMassUpdateRights.class.php
@@ -76,7 +76,7 @@ class modMassUpdateRights extends DolibarrModules
         $this->editor_email     = 'support@easya.solutions';
 		
 		// Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z'
-		$this->version = file_get_contents(__DIR__.'/../../VERSION');
+		$this->version = trim(file_get_contents(__DIR__.'/../../VERSION'));
         $this->url_last_version = 'https://git.open-dsi.fr/dolibarr-extension/'.strtolower($this->name).'/-/raw/2024/VERSION';
 		// Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
 		$easya_info = json_decode(file_get_contents(__DIR__.'/../../.easya_info.json'));