From: Michael Reddick <michael.reddick@gmail.com>
Date: Wed, 30 May 2012 23:09:15 +0000 (-0500)
Subject: bump the version to 0.14
X-Git-Tag: 0.15~3
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2358b232111f00c6986d8fe39c2c4a1723ba3201;p=gitmo%2FMooseX-Daemonize.git

bump the version to 0.14
---

diff --git a/Changes b/Changes
index 6e5c4f2..ee51b0f 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for MooseX-Daemonize
 
+0.14 Wed. May 30, 2012
+    - recommend Daemon::Control instead
+    - fix bug with pidbase dir not being created
+      if it doesn't already exist
+
 0.13 Wed. July 6, 2011
     - adding docs related to closing all
       filehandles and the issues that can
diff --git a/lib/MooseX/Daemonize.pm b/lib/MooseX/Daemonize.pm
index 5573d42..8930813 100644
--- a/lib/MooseX/Daemonize.pm
+++ b/lib/MooseX/Daemonize.pm
@@ -4,7 +4,7 @@ use Moose::Role;
 use MooseX::Types::Path::Class;
 use File::Path qw(make_path);
 
-our $VERSION   = '0.13';
+our $VERSION   = '0.14';
 
 with 'MooseX::Daemonize::WithPidFile',
      'MooseX::Getopt';