Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-10-21 07:08:23 +0300
committerAndrew Gallant <jamslam@gmail.com>2017-10-21 15:10:18 +0300
commit99fe05638dd0039d35bbe45f739b75a0594bd574 (patch)
tree19ddd9781d4c93ecd5f23aac00ea93a684732310
parentbfd917fdfd640113e42953bba59a102ecf98e61d (diff)
doc: bump version number to 2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
-rw-r--r--src/lib.rs4
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 34d2876..298b41d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "walkdir"
# remember to update html_root_url
-version = "1.0.7" #:version
+version = "2.0.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Recursively walk a directory."
documentation = "https://docs.rs/walkdir/"
diff --git a/README.md b/README.md
index 97d6840..4f4dd88 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ To use this crate, add `walkdir` as a dependency to your project's
```
[dependencies]
-walkdir = "1"
+walkdir = "2"
```
### Example
diff --git a/src/lib.rs b/src/lib.rs
index c43734d..d7e2d71 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -10,7 +10,7 @@ To use this crate, add `walkdir` as a dependency to your project's
```text
[dependencies]
-walkdir = "1"
+walkdir = "2"
```
# From the top
@@ -103,7 +103,7 @@ for entry in walker.filter_entry(|e| !is_hidden(e)) {
[`filter_entry`]: struct.IntoIter.html#method.filter_entry
*/
-#![doc(html_root_url = "https://docs.rs/walkdir/1.0.7")]
+#![doc(html_root_url = "https://docs.rs/walkdir/2.0.0")]
#![deny(missing_docs)]
#[cfg(windows)]