summaryrefslogtreecommitdiffstats
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
parent4f09627f1578f0bee8347bca893ea6dccca8e189 (diff)
increment version
-rw-r--r--README.md8
-rw-r--r--ipfs-api/src/lib.rs8
2 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index bc375f9..aae6d5c 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Rust library for connecting to the IPFS HTTP API using Hyper/Actix.
```toml
[dependencies]
-ipfs-api = "0.10.0"
+ipfs-api = "0.11.0"
```
#### Feature Flags
@@ -18,7 +18,7 @@ You can use `actix-web` as a backend instead of `hyper`.
```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)
@@ -26,14 +26,14 @@ instead of native tls:
```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
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