From f73ddefe9350bf6417d5161118f1a456cc565d8d Mon Sep 17 00:00:00 2001 From: Ashley Mannix Date: Mon, 4 Mar 2019 10:04:31 +1000 Subject: [PATCH] prepare for 0.3.0 release --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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))]