diff --git a/Cargo.toml b/Cargo.toml index 9b77144..05f59bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "glob" -version = "0.2.11" +version = "0.3.0" authors = ["The Rust Project Developers"] license = "MIT/Apache-2.0" homepage = "https://github.com/rust-lang/glob" repository = "https://github.com/rust-lang/glob" -documentation = "https://doc.rust-lang.org/glob" +documentation = "https://docs.rs/glob/0.3.0" description = """ Support for matching file paths against Unix shell style patterns. """ diff --git a/README.md b/README.md index be88d43..e61a976 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ To use `glob`, add this to your `Cargo.toml`: ```toml [dependencies] -glob = "0.2" +glob = "0.3.0" ``` And add this to your crate root: diff --git a/src/lib.rs b/src/lib.rs index 8e35e44..b28db9b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,7 +58,7 @@ #![doc( html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "https://www.rust-lang.org/favicon.ico", - html_root_url = "https://doc.rust-lang.org/glob/" + html_root_url = "https://docs.rs/glob/0.3.0" )] #![deny(missing_docs)] #![cfg_attr(all(test, windows), feature(std_misc))]