Skip to content

Commit 1cf0f30

Browse files
atouchettgross35
authored andcommitted
Fix version numbers and some formatting
1 parent 7a17f11 commit 1cf0f30

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[package]
2-
32
name = "glob"
43
version = "0.3.2"
54
authors = ["The Rust Project Developers"]
65
license = "MIT OR Apache-2.0"
76
homepage = "https://github.com/rust-lang/glob"
87
repository = "https://github.com/rust-lang/glob"
9-
documentation = "https://docs.rs/glob/0.3.1"
8+
documentation = "https://docs.rs/glob"
109
description = """
1110
Support for matching file paths against Unix shell style patterns.
1211
"""

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ To use `glob`, add this to your `Cargo.toml`:
1313

1414
```toml
1515
[dependencies]
16-
glob = "0.3.1"
16+
glob = "0.3.2"
1717
```
1818

1919
If you're using Rust 1.30 or earlier, or edition 2015, add this to your crate root:
20+
2021
```rust
2122
extern crate glob;
2223
```

0 commit comments

Comments
 (0)