Skip to content

Commit 6da1a4e

Browse files
committed
Version 0.1.1
1 parent 0fc6e92 commit 6da1a4e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Change Log
2+
3+
## 0.1.1
4+
5+
* Added async function support - thanks to [@tailhook](https://github.com/tailhook) for [#2](https://github.com/andrewhickman/fn-error-context/pull/2).

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.0"
4+
version = "0.1.1"
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
@@ -25,7 +25,7 @@
2525
//! [`anyhow`]: https://crates.io/crates/anyhow
2626
//! [`failure`]: https://crates.io/crates/failure
2727
28-
#![doc(html_root_url = "https://docs.rs/fn-error-context/0.1.0")]
28+
#![doc(html_root_url = "https://docs.rs/fn-error-context/0.1.1")]
2929
#![deny(missing_docs)]
3030

3131
extern crate proc_macro;

0 commit comments

Comments
 (0)