Skip to content

Commit

Permalink
version 2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Canop committed Jul 13, 2023
1 parent 44561a8 commit 24f17a2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### next
- fix occasional additional warning counted - Fix #149
<a name="v2.11.1"></a>
### v2.11.1 - 2023/07/13
- fix warning summary sometimes confused with a warning - Fix #149

<a name="v2.11.0"></a>
### v2.11.0 - 2023/06/30
Expand Down
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 = "bacon"
version = "2.11.1-dev"
version = "2.11.1"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/bacon"
description = "background rust compiler"
Expand Down
4 changes: 3 additions & 1 deletion src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,9 @@ impl Report {
}
_ => {}
}
let Some(location) = line.location() else { continue };
let Some(location) = line.location() else {
continue;
};
let (_, mut path, file_line, file_column) =
regex_captures!(r#"^([^:]+):(\d+):(\d+)$"#, location,)
.unwrap_or(("", location, "", ""));
Expand Down

0 comments on commit 24f17a2

Please sign in to comment.