diff --git a/roles/ynh_backup/README-FR.md b/roles/ynh_backup/README-FR.md
index a5fee6d135ebd9f17311a96534e40216fc2440b2..119698e2d5c6b1c5cce5bb822ffe1a830a2d38d8 100644
--- a/roles/ynh_backup/README-FR.md
+++ b/roles/ynh_backup/README-FR.md
@@ -90,6 +90,7 @@ N'hésitez pas à regarder les variables disponibles dans le [rôle](https://git
 ynh_restic_backup_scheduled: True
 restic_create_schedule:      True
 restic_keep_time:            "0y2m0d0h"
+restic_version:              "0.14.0"
 
 restic_repos:
   s3_ynh_restic_repo:
@@ -116,6 +117,7 @@ restic_backups:
 
 - `ynh_restic_backup_scheduled` : Active / désactive la fonctionnalité de sauvegarde avec Restic.
 - `restic_keep_time` : Permet de régler finement la période de temps durant laquelle les snapshots doivent être conservés. la valeur par défaut est de 1 mois `0y1m0d0h`.
+- `restic_version` : Vous permet de spécifier la version de Restic que vous souhaitez utiliser. La version par défaut du rôle est la 0.14.0. Vous pouvez vérifier les versions de Restic [ici](https://github.com/restic/restic/releases).
 - `restic_repos`: Restic conserve les données dans des dépôts. Vous devez spécifier au moins un dépôt pour utiliser ce rôle. Un dépôt doit comporter les variables suivantes :
   - `location` : **Obligatoire**, le chemin vers le dépôt. Ça peut être un chemin local (par exemple `/data/backup`) ou un chemin vers un bucket S3 (voir l'exemple ci-dessus).
   - `password`: **Obligatoire**, mot de passe à utiliser pour le dépôt Restic.
diff --git a/roles/ynh_backup/README.md b/roles/ynh_backup/README.md
index 5c41c8c4d44a2aa164ae856d3f2bde9c8526d6be..880610065af9b017968519ac16921c686c27b9bf 100644
--- a/roles/ynh_backup/README.md
+++ b/roles/ynh_backup/README.md
@@ -64,7 +64,7 @@ ynh_ssh_borg_command:                 "ssh_command: ssh -p 7410 -o StrictHostKey
 
 - `ynh_borg_backup_scheduled`: Enable / disable the backup feature with BorgBackup.
 - `m3nu_ansible_role_borgbackup_version`: Allows you to specify which version of the Borg Backup Ansible role you want to use. The default version of the role is v0.9.3 but you can check the releases of the role [here](https://github.com/borgbase/ansible-role-borgbackup).
-- `ynh_borg_backup_remote_repo`: Enable / disable the backup functionality on a BorgBackup remote repository (tasks related to SSH keys setup). If you enable this feature, then you will need to use `borg_ssh_keys_src` and `borg_ssh_keys_dest` variables. 
+- `ynh_borg_backup_remote_repo`: Enable / disable the backup functionality on a BorgBackup remote repository (tasks related to SSH keys setup). If you enable this feature, then you will need to use `borg_ssh_keys_src` and `borg_ssh_keys_dest` variables.
 - `borg_source_directories`: List of source folders to back up. By default, this is the folder in which YunoHost local backups are located.
 - `borg_repository`: Full path to the Borg repository. Possibility to give a list of repositories to save data in several places.
 - `borg_encryption_passphrase` : **Mandatory**, password to use for the Borg repository encryption key.
@@ -90,6 +90,7 @@ Feel free to look at the variables available in the [role](https://github.com/bo
 ynh_restic_backup_scheduled: True
 restic_create_schedule:      True
 restic_keep_time:            "0y2m0d0h"
+restic_version:              "0.14.0"
 
 restic_repos:
   s3_ynh_restic_repo:
@@ -116,6 +117,7 @@ restic_backups:
 
 - `ynh_restic_backup_scheduled`: Enable / disable the backup feature with Restic.
 - `restic_keep_time`: Allows to fine tune the time period during which snapshots should be kept. The default value is 1 month `0y1m0d0h`.
+- `restic_version`: Allows you to specify the version of Restic you want to use. The default version of the role is 0.14.0. You can check Restic versions [here](https://github.com/restic/restic/releases).
 - `restic_repos`: Restic keeps data in repositories. You must specify at least one repository to use this role. A repository must have the following variables:
   - `location`: **Mandatory**, the path to the repository. This can be a local path (e.g. `/data/backup`) or a path to an S3 bucket (see example above).
   - `password`: **Mandatory**, password to use for the Restic repository.
diff --git a/roles/ynh_backup/defaults/main.yml b/roles/ynh_backup/defaults/main.yml
index 9d91a00fb2b09f2f1706df81a954c5bf945ef61d..a52dabaa5d3e2718cdff9816bbd0f4dfc4e8fee5 100644
--- a/roles/ynh_backup/defaults/main.yml
+++ b/roles/ynh_backup/defaults/main.yml
@@ -36,6 +36,6 @@ ynh_borg_backup_remote_repo:          False
 # https://github.com/roles-ansible/ansible_role_restic
 ynh_restic_backup_scheduled:          False
 do1jlr_restic_version:                "v0.7.1"
-restic_version:                       "0.12.1"
+restic_version:                       "0.14.0"
 restic_schedule_type:                 "cronjob"
 restic_keep_time:                     "0y1m0d0h"