From 9af4c63ec5f3211df75f1dfa16a787da1303a04a Mon Sep 17 00:00:00 2001 From: Philippe Llerena Date: Sun, 17 Sep 2023 22:36:31 +0200 Subject: [PATCH] bumpversion --- Cargo.lock | 2 +- docs/content/_index.md | 4 ++-- tests/cli.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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(()) }