Skip to content

Commit

Permalink
Merge pull request #23 from kinnison/bump-versions
Browse files Browse the repository at this point in the history
Bump versions for a 0.2.2 release
  • Loading branch information
kinnison authored Dec 30, 2022
2 parents bd10122 + 3282e0b commit 4b75305
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "git-testament"
version = "0.2.1"
version = "0.2.2"
authors = ["Daniel Silverstone <[email protected]>"]
edition = "2018"
edition = "2021"

description = "Record git working tree status when compiling your crate"
documentation = "https://docs.rs/git-testament/"
Expand All @@ -17,7 +17,7 @@ members = [

[dependencies]
no-std-compat = { version = "0.4" }
git-testament-derive = { version = "0.1.13", path = "git-testament-derive" }
git-testament-derive = { version = "0.1.14", path = "git-testament-derive" }

[dev-dependencies]
tempfile = "3"
Expand Down
2 changes: 1 addition & 1 deletion git-testament-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Daniel Silverstone <[email protected]>"]
edition = "2018"
name = "git-testament-derive"
version = "0.1.13"
version = "0.1.14"

description = "Record git working tree status when compiling your crate - inner procedural macro"
documentation = "https://docs.rs/git-testament/"
Expand Down
2 changes: 1 addition & 1 deletion tests/testutils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl TestSentinel {
.expect("Unable to retrieve manifest line");
let caps = MANIFEST_RE
.captures(first)
.unwrap_or_else(|| panic!("Unable to parse manifest line: '{}'", first));
.unwrap_or_else(|| panic!("Unable to parse manifest line: '{first}'"));
// Step one, process the tag bit
let (tag, distance) = if let Some(tcaps) =
TAG_WITH_DISTANCE.captures(caps.get(1).expect("No tag captures?").as_str())
Expand Down

0 comments on commit 4b75305

Please sign in to comment.