diff --git a/Cargo.lock b/Cargo.lock index 48a9d1a..c88d7e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -379,7 +379,7 @@ dependencies = [ [[package]] name = "framels" -version = "0.7.4" +version = "0.7.5" dependencies = [ "assert_cmd", "clap", diff --git a/Cargo.toml b/Cargo.toml index 0126367..106eb44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "framels" -version = "0.7.4" +version = "0.7.5" edition = "2021" authors = ["Philippe Llerena"] description = "a simple command line tool to list frame sequence in friendly way" diff --git a/docs/content/_index.md b/docs/content/_index.md index 2b7740c..c7429fc 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.7.4" +repo_version = "GitHub v0.7.5" repo_license = "Open-source MIT License." -repo_url = "https://github.com/forticheprod/fls/tree/0.7.4" +repo_url = "https://github.com/forticheprod/fls/tree/0.7.5" # Menu items [[extra.menu.main]] diff --git a/tests/cli.rs b/tests/cli.rs index d3994d8..6737452 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.7.4")); + .stdout(predicate::str::contains("framels 0.7.5")); Ok(()) }