Skip to content

Commit

Permalink
build(deps): bump framels to version 0.7.7
Browse files Browse the repository at this point in the history
Bump the version of framels from 0.7.6 to 0.7.7. This includes updates to the Cargo.lock and Cargo.toml files, as well as changes to the benches/mega.rs and docs/content/_index.md files. The updated version can be found on GitHub at [this link](https://github.com/forticheprod/fls/tree/0.7.7).
  • Loading branch information
doubleailes committed Aug 12, 2024
1 parent 2d173f5 commit 40ccfeb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "framels"
version = "0.7.6"
version = "0.7.7"
edition = "2021"
authors = ["Philippe Llerena<[email protected]>"]
description = "a simple command line tool to list frame sequence in friendly way"
Expand Down
5 changes: 2 additions & 3 deletions benches/mega.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ use std::path::PathBuf;

use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
use framels::{
basic_listing, parse_dir,
basic_listing, extended_listing, parse_dir,
paths::{Paths, PathsPacked},
extended_listing,
};

fn generate_paths(n: u64) -> Paths {
Expand All @@ -31,7 +30,7 @@ fn small_parse_and_run() {
fn exr_reading() {
let source = "./samples/big/".to_string();
let paths: Paths = parse_dir(&source);
let _results: PathsPacked = extended_listing(source,paths, false);
let _results: PathsPacked = extended_listing(source, paths, false);
}

fn criterion_benchmark(c: &mut Criterion) {
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.6"
repo_version = "GitHub v0.7.7"
repo_license = "Open-source MIT License."
repo_url = "https://github.com/forticheprod/fls/tree/0.7.6"
repo_url = "https://github.com/forticheprod/fls/tree/0.7.7"

# 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.6"));
.stdout(predicate::str::contains("framels 0.7.7"));

Ok(())
}
Expand Down

0 comments on commit 40ccfeb

Please sign in to comment.