summaryrefslogtreecommitdiffstats
path: root/ipfs-api
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2021-02-13 23:50:32 -0500
committerFerris Tseng <ferristseng@fastmail.fm>2021-02-13 23:50:32 -0500
commitcd7f8b4fd826e61c0edf2de2369834fee339e1e1 (patch)
treef9e41dcf25ac157ede4a8438bc398ac8fabeee41 /ipfs-api
parent4f09627f1578f0bee8347bca893ea6dccca8e189 (diff)
increment version
Diffstat (limited to 'ipfs-api')
-rw-r--r--ipfs-api/src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipfs-api/src/lib.rs b/ipfs-api/src/lib.rs
index 27a3482..572e286 100644
--- a/ipfs-api/src/lib.rs
+++ b/ipfs-api/src/lib.rs
@@ -14,7 +14,7 @@
//!
//! ```toml
//! [dependencies]
-//! ipfs-api = "0.10.0"
+//! ipfs-api = "0.11.0"
//! ```
//! ### Feature Flags
//!
@@ -22,7 +22,7 @@
//!
//! ```toml
//! [dependencies]
-//! ipfs-api = { version = "0.10.0", features = ["with-actix"], default-features = false }
+//! ipfs-api = { version = "0.11.0", features = ["with-actix"], default-features = false }
//! ```
//!
//! You also have the option of using [`rustls`](https://crates.io/crates/rustls)
@@ -30,14 +30,14 @@
//!
//! ```toml
//! [dependencies]
-//! ipfs-api = { version = "0.10.0", features = ["with-hyper-rustls"], default-features = false }
+//! ipfs-api = { version = "0.11.0", features = ["with-hyper-rustls"], default-features = false }
//! ```
//!
//! To enable the builder pattern (default) use the `with-builder` feature:
//!
//! ```toml
//! [dependencies]
-//! ipfs-api = { version = "0.10.0", features = ["with-hyper-rustls", "with-builder"], default-features = false }
+//! ipfs-api = { version = "0.11.0", features = ["with-hyper-rustls", "with-builder"], default-features = false }
//! ```
//!
//! ## Examples