Skip to content

Commit

Permalink
Merge pull request #75 from rust-lang-nursery/cargo/0.3.0
Browse files Browse the repository at this point in the history
Prepare for 0.3.0 release
  • Loading branch information
KodrAus authored Mar 7, 2019
2 parents 20c2f9f + f73ddef commit b003dc3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.
"""
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down

0 comments on commit b003dc3

Please sign in to comment.