From 7d6f171d6fd227f37cfc41c78a0ac1938652e604 Mon Sep 17 00:00:00 2001 From: Yossef Mendelssohn Date: Mon, 30 Jun 2008 13:39:55 -0500 Subject: [PATCH] Setting version (0.1.0), updating History. --- History.txt | 8 ++++++++ lib/fsevents/version.rb | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/History.txt b/History.txt index f083dce..4540d4f 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,11 @@ +== 0.1.0 2008-06-30 + +* 1 minor enhancement: + * Added optional cache mode for getting an Event's modified files. The old behavior is the mtime mode, which is default. + +* 1 tiny enhancement: + * Now stripping trailing slashes from paths (for both Stream and Event objects) + == 0.0.2 2008-06-17 * 1 tiny enhancement: diff --git a/lib/fsevents/version.rb b/lib/fsevents/version.rb index 242efe1..a8fcdeb 100644 --- a/lib/fsevents/version.rb +++ b/lib/fsevents/version.rb @@ -1,8 +1,8 @@ module Fsevents #:nodoc: module VERSION #:nodoc: MAJOR = 0 - MINOR = 0 - TINY = 2 + MINOR = 1 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end