From 71b6c1f683e58773e6d1c5664f8ddae35506031c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 9 Nov 2021 20:55:00 -0800 Subject: [PATCH] Release 0.2.0 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab5402b..be49a27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inventory" -version = "0.1.11" # remember to update html_root_url +version = "0.2.0" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Typed distributed plugin registration" diff --git a/README.md b/README.md index ba7ad8e..fdb2524 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ need to be a central list of all the plugins. ```toml [dependencies] -inventory = "0.1" +inventory = "0.2" ``` *Supports rustc 1.37+* diff --git a/src/lib.rs b/src/lib.rs index f465f96..5197139 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -102,7 +102,7 @@ //! There is no guarantee about the order that plugins of the same type are //! visited by the iterator. They may be visited in any order. -#![doc(html_root_url = "https://docs.rs/inventory/0.1.11")] +#![doc(html_root_url = "https://docs.rs/inventory/0.2.0")] #![no_std] #![allow( clippy::doc_markdown,