From 455d86dbd9d64c18e0ff016e700a85fb3c4ca51a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Tue, 5 Jul 2016 19:26:54 +1200 Subject: [PATCH] 2.6.2 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b7516bb..a10540a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notify" -version = "2.6.1" +version = "2.6.2" authors = [ "Félix Saparelli ", "Jorge Israel Peña ", diff --git a/README.md b/README.md index 0f4e3573..01edda5b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _Cross-platform filesystem notification library for Rust._ ```toml [dependencies] -notify = "^2.6.1" +notify = "2.6.2" ``` ## Usage @@ -40,7 +40,7 @@ fn watch() -> notify::Result<()> { // Add a path to be watched. All files and directories at that path and // below will be monitored for changes. try!(watcher.watch("/home/test/notify")); - + // This is a simple loop, but you may want to use more complex logic here, // for example to handle I/O. loop {