diff --git a/Cargo.lock b/Cargo.lock
index a052727..ec61149 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -401,7 +401,7 @@ dependencies = [
[[package]]
name = "framels"
-version = "0.5.1"
+version = "0.5.2"
dependencies = [
"assert_cmd",
"clap",
diff --git a/docs/content/_index.md b/docs/content/_index.md
index b8ed848..f693d30 100644
--- a/docs/content/_index.md
+++ b/docs/content/_index.md
@@ -7,9 +7,9 @@ title = "A simple but sexy ls command line tool"
lead = 'framels is a command line tool and lib dedicated to animation and vfx, for terminal user or simply other rust projects.'
url = "/docs/getting-started/introduction/"
url_button = "Get started"
-repo_version = "GitHub v0.5.1"
+repo_version = "GitHub v0.5.2"
repo_license = "Open-source MIT License."
-repo_url = "https://github.com/doubleailes/fls/tree/0.5.1"
+repo_url = "https://github.com/doubleailes/fls/tree/0.5.2"
# Menu items
[[extra.menu.main]]
diff --git a/tests/cli.rs b/tests/cli.rs
index 76d3f1a..456969b 100644
--- a/tests/cli.rs
+++ b/tests/cli.rs
@@ -42,7 +42,7 @@ fn cli_version() -> Result<(), Box> {
cmd.arg("-V");
cmd.assert()
.success()
- .stdout(predicate::str::contains("framels 0.5.1"));
+ .stdout(predicate::str::contains("framels 0.5.2"));
Ok(())
}