1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// License: see LICENSE file at root directory of `master` branch

//! # `0.9.0` _(May 18th, 2019)_
//!
//! ## Changes
//!
//! [`filter`][::filter]:
//!
//! - [`All`][::All], [`Any`][::Any]: changed types of input filters from `Vec<Box<Filter>>` into `&[&Filter]`.
//!
//! - [`AllPaths`][::AllPaths], [`SomeDirNames`][::SomeDirNames], [`IgnoredDirNames`][::IgnoredDirNames], [`SomeFileNames`][::SomeFileNames],
//!   [`SymlinkFiles`][::SymlinkFiles], [`NonSymlinkFiles`][::NonSymlinkFiles]: made constructors constant.
//!
//! - Removed constant <s>`NO_EXT`</s>.
//!
//! - [`SomeFileExts`][::SomeFileExts], [`IgnoredFileExts`][::IgnoredFileExts]:
//!
//!     + Constructors: added one flag for files without extension.
//!     + Made constructors constant.
//!
//! - Added new struct [`IgnoredFileNames`][::IgnoredFileNames].
//!
//! ## Dependencies
//!
//! No dependencies.
//!
//! [::filter]: ../filter/index.html
//! [::All]: ../filter/struct.All.html
//! [::Any]: ../filter/struct.Any.html
//! [::AllPaths]: ../filter/struct.AllPaths.html
//! [::SomeDirNames]: ../filter/struct.SomeDirNames.html
//! [::IgnoredDirNames]: ../filter/struct.IgnoredDirNames.html
//! [::SomeFileNames]: ../filter/struct.SomeFileNames.html
//! [::IgnoredFileNames]: ../filter/struct.IgnoredFileNames.html
//! [::SomeFileExts]: ../filter/struct.SomeFileExts.html
//! [::IgnoredFileExts]: ../filter/struct.IgnoredFileExts.html
//! [::SymlinkFiles]: ../filter/struct.SymlinkFiles.html
//! [::NonSymlinkFiles]: ../filter/struct.NonSymlinkFiles.html