Skip to content

Commit eeb8a73

Browse files
authored
Merge pull request #1 from rust-lang-nursery/master
Merge from master
2 parents 172265e + 0954034 commit eeb8a73

File tree

5 files changed

+480
-324
lines changed

5 files changed

+480
-324
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: rust
22
rust:
3+
- 1.23.0
34
- stable
45
- beta
56
- nightly

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
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
"""
1313
categories = ["filesystem"]
1414

1515
[dev-dependencies]
1616
tempdir = "0.3"
17+
doc-comment = "0.3"

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:

0 commit comments

Comments
 (0)