Skip to content

Commit

Permalink
Version 0.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhenrymantilla committed Jun 29, 2021
1 parent 70552f7 commit 89cb7a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fix-hidden-lifetime-bug"
version = "0.2.3"
version = "0.2.4"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
Expand All @@ -14,7 +14,7 @@ keywords = ["impl", "lifetime", "bug", "hidden", "bound"]

[dependencies.proc-macros]
package = "fix-hidden-lifetime-bug-proc_macros"
version = "0.2.3"
version = "0.2.4"
path = "src/proc_macros"
optional = true

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ an equivalent signature that soothes such a grumpy compiler 🙃
{
async move {
"Mention the input vars so that they get captured by the Future";
let (_, _, _) = (a, b, c);
let (a, b, c) = (a, b, c);
println!("Hello, World!");
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/proc_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ proc-macro = true

[package]
name = "fix-hidden-lifetime-bug-proc_macros"
version = "0.2.3"
version = "0.2.4"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
Expand Down

0 comments on commit 89cb7a1

Please sign in to comment.