Skip to content

Commit

Permalink
Update Gix and jira deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Baarsgaard committed Sep 7, 2024
1 parent 40bfc60 commit fef96f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ clap = { version = "4.3.0", default-features = false, features = [
clap_complete = "4.4.4"
color-eyre = { version = "0.6.2", default-features = false }
etcetera = "0.8.0"
gix = { version = "0.63.0", default-features = false }
gix = { version = "0.66.0", default-features = false }
inquire = { version = "0.7.0", features = ["date"] }
jira = { version = "0.4.2", default-features = false, package = "jira-issue-api" }
regex = { version = "1.8.4", features = ["std"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/interactivity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ mod filter {

let filter_list = selected_filters
.iter()
.map(Filter::filter_query)
.map(|filter| format!("filter={}", filter.id))
.collect::<Vec<String>>();

if cfg.inclusive_filters.unwrap_or(true) {
Expand Down
4 changes: 2 additions & 2 deletions src/repo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ mod test {
},
id: String::from("10001"),
key: issue_key.unwrap_or(IssueKey(String::from("JB-1"))),
self_reference: String::from("https://ddd.ddd.com/"),
self_ref: String::from("https://ddd.ddd.com/"),
expand: String::from("Don't remember"),
names: None,
}
Expand All @@ -217,7 +217,7 @@ mod test {
},
id: String::from(""),
key: IssueKey(String::default()),
self_reference: String::from("https://ddd.ddd.com/"),
self_ref: String::from("https://ddd.ddd.com/"),
expand: String::from(""),
names: None,
}
Expand Down

0 comments on commit fef96f7

Please sign in to comment.