Skip to content

Commit

Permalink
Version 0.2.3 (fixed minor doc issues)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhenrymantilla committed Jun 10, 2021
1 parent d377fbf commit 1f0c1fc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

5 changes: 3 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.2"
version = "0.2.3"
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.2"
version = "0.2.3"
path = "src/proc_macros"
optional = true

Expand All @@ -32,6 +32,7 @@ targets = [
"x86_64-unknown-linux-gnu",
]
features = [
"nightly",
"proc-macros",
]

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ an equivalent signature that soothes such a grumpy compiler 🙃
```toml
[dependencies]
fix_hidden_lifetime_bug = "x.y.z"
fix-hidden-lifetime-bug = "x.y.z"
```
- where you can find the version using `cargo search fix_hidden_lifetime_bug`
Expand Down Expand Up @@ -196,15 +196,15 @@ an equivalent signature that soothes such a grumpy compiler 🙃
```toml
[dependencies]
fix_hidden_lifetime_params.version = "x.y.z"
fix_hidden_lifetime_params.features = ["showme"]
fix-hidden-lifetime-bug.version = "x.y.z"
fix-hidden-lifetime-bug.features = ["showme"]
```
you can then feed a `showme` parameter to specific
`#[fix_hidden_lifetime_params]` annotations, as follows:
`#[fix_hidden_lifetime_bug]` annotations, as follows:
```rust,ignore
#[fix_hidden_lifetime_params(showme)]
#[fix_hidden_lifetime_bug(showme)]
```
<details><summary>Example</summary>
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.2"
version = "0.2.3"
authors = [
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>",
]
Expand Down

0 comments on commit 1f0c1fc

Please sign in to comment.