Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.3.1 release #124

Merged
merged 1 commit into from Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,12 +1,12 @@
[package]

name = "glob"
version = "0.3.0"
version = "0.3.1"
authors = ["The Rust Project Developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rust-lang/glob"
repository = "https://github.com/rust-lang/glob"
documentation = "https://docs.rs/glob/0.3.0"
documentation = "https://docs.rs/glob/0.3.1"
description = """
Support for matching file paths against Unix shell style patterns.
"""
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ To use `glob`, add this to your `Cargo.toml`:

```toml
[dependencies]
glob = "0.3.0"
glob = "0.3.1"
```

And add this to your crate root:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
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://docs.rs/glob/0.3.0"
html_root_url = "https://docs.rs/glob/0.3.1"
)]
#![deny(missing_docs)]

Expand Down