From b6841d3a04ce96448403cd7c594f59e834bb79a4 Mon Sep 17 00:00:00 2001 From: Zachery Moneypenny Date: Sun, 15 Mar 2015 12:00:04 -0500 Subject: [PATCH] Bumps version to 2.0.0 This is a major version change because the commits to make the pidfile tracking more robust could introduce errors into working configurations in the wild. The reason being that, though some people may have specified pidfile locations in their Guardfile, if those locations didn't exist or weren't writeable then redis-server would still have been executed, happily chugging along with no way for guard-redis to restart because the pid wasn't known. Now, guard-redis requires that a pid be known and accessible or else it won't start redis to begin with. --- lib/guard/redis/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/guard/redis/version.rb b/lib/guard/redis/version.rb index e694eca..c81de73 100644 --- a/lib/guard/redis/version.rb +++ b/lib/guard/redis/version.rb @@ -1,5 +1,5 @@ module Guard module RedisVersion - VERSION = '1.0.2' + VERSION = '2.0.0' end end