Skip to content

Merge from master #1

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

Merged
merged 22 commits into from
Jun 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cc35572
derive Copy trait for MatchOptions
g-s-k Jan 18, 2019
1a25d8e
remove unused import
g-s-k Jan 18, 2019
b545492
replace try! macro and move definitions to top of fn body
g-s-k Jan 18, 2019
ad4450d
remove redundant struct field repetitions
g-s-k Jan 18, 2019
fe54f39
remove redundant return statement
g-s-k Jan 18, 2019
99da6be
remove 'static specifier on consts
g-s-k Jan 18, 2019
4d8426b
use affirmative condition rather than negative one
g-s-k Jan 18, 2019
f5f06b4
pass by value with new copy impl
g-s-k Jan 18, 2019
3049fbd
elide unnecessary lifetimes
g-s-k Jan 18, 2019
4223d07
use Self in impl blocks
g-s-k Jan 18, 2019
0d6f408
use !is_empty rather than len > 0, for _ in &_ rather than for _ in _…
g-s-k Jan 18, 2019
1b7759c
fix borrow/pass-by-value errors in tests
g-s-k Jan 18, 2019
507a084
don't assume `macos` target os has a /root directory
g-s-k Jan 18, 2019
3c53061
removed borrow in doctest
g-s-k Jan 18, 2019
2f09a1f
ran cargo fmt
g-s-k Jan 18, 2019
1b5b670
Merge pull request #71 from g-s-k/clone-derive
KodrAus Feb 5, 2019
ab51aaa
add an explicit version to check in CI
KodrAus Feb 5, 2019
20c2f9f
Merge pull request #73 from rust-lang-nursery/ci/explicit-version
KodrAus Feb 5, 2019
f73ddef
prepare for 0.3.0 release
KodrAus Mar 4, 2019
b003dc3
Merge pull request #75 from rust-lang-nursery/cargo/0.3.0
KodrAus Mar 7, 2019
3e2f6df
Add doc-comment to test README examples
GuillaumeGomez May 2, 2019
0954034
Merge pull request #81 from GuillaumeGomez/doc-comment
KodrAus May 2, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[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.
"""
categories = ["filesystem"]

[dev-dependencies]
tempdir = "0.3"
doc-comment = "0.3"
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
Loading