Skip to content

Commit b4c77b0

Browse files
committed
Prepare for version 0.1.2
1 parent cfa749a commit b4c77b0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22

33
## 0.1.1
44

5-
* Added async function support - thanks to [@tailhook](https://github.com/tailhook) for [#2](https://github.com/andrewhickman/fn-error-context/pull/2).
5+
* Added async function support - thanks to [@tailhook](https://github.com/tailhook) for [#2](https://github.com/andrewhickman/fn-error-context/pull/2).
6+
7+
# 0.1.2
8+
9+
* Fixed lints like `dead_code` not triggering for functions annotated with `#[context]` ([#3](https://github.com/andrewhickman/fn-error-context/issues/3)).

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fn-error-context"
33
description = "An attribute macro to add context to errors from a function."
4-
version = "0.1.1"
4+
version = "0.1.2"
55
authors = ["Andrew Hickman <[email protected]>"]
66
repository = "https://github.com/andrewhickman/fn-error-context"
77
documentation = "https://docs.rs/fn-error-context"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
//! [`anyhow`]: https://crates.io/crates/anyhow
3232
//! [`failure`]: https://crates.io/crates/failure
3333
34-
#![doc(html_root_url = "https://docs.rs/fn-error-context/0.1.1")]
34+
#![doc(html_root_url = "https://docs.rs/fn-error-context/0.1.2")]
3535
#![deny(missing_docs)]
3636

3737
extern crate proc_macro;

0 commit comments

Comments
 (0)