Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump clap from 4.4.18 to 4.5.0 #249

Merged
merged 4 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "framels"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
authors = ["Philippe Llerena<philippe.llerena@gmail.com>"]
description = "a simple command line tool to list frame sequence in friendly way"
Expand All @@ -17,7 +17,7 @@ path = "src/main.rs"
lto = true

[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
clap = { version = "4.5.0", features = ["derive"] }
exr = "1.72.0"
jwalk = "0.8.1"
lazy_static = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ title = "A simple but sexy ls command line tool"
lead = '<b>framels</b> 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.0"
repo_version = "GitHub v0.7.1"
repo_license = "Open-source MIT License."
repo_url = "https://github.com/forticheprod/fls/tree/0.7.0"
repo_url = "https://github.com/forticheprod/fls/tree/0.7.1"

# Menu items
[[extra.menu.main]]
Expand Down
2 changes: 1 addition & 1 deletion tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn cli_version() -> Result<(), Box<dyn std::error::Error>> {
cmd.arg("-V");
cmd.assert()
.success()
.stdout(predicate::str::contains("framels 0.7.0"));
.stdout(predicate::str::contains("framels 0.7.1"));

Ok(())
}
Expand Down
Loading