Skip to content

Commit b003dc3

Browse files
authored
Merge pull request #75 from rust-lang-nursery/cargo/0.3.0
Prepare for 0.3.0 release
2 parents 20c2f9f + f73ddef commit b003dc3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22

33
name = "glob"
4-
version = "0.2.11"
4+
version = "0.3.0"
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
homepage = "https://github.com/rust-lang/glob"
88
repository = "https://github.com/rust-lang/glob"
9-
documentation = "https://doc.rust-lang.org/glob"
9+
documentation = "https://docs.rs/glob/0.3.0"
1010
description = """
1111
Support for matching file paths against Unix shell style patterns.
1212
"""

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To use `glob`, add this to your `Cargo.toml`:
1313

1414
```toml
1515
[dependencies]
16-
glob = "0.2"
16+
glob = "0.3.0"
1717
```
1818

1919
And add this to your crate root:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#![doc(
5959
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
6060
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
61-
html_root_url = "https://doc.rust-lang.org/glob/"
61+
html_root_url = "https://docs.rs/glob/0.3.0"
6262
)]
6363
#![deny(missing_docs)]
6464
#![cfg_attr(all(test, windows), feature(std_misc))]

0 commit comments

Comments
 (0)