From d469e3f11edafa5756a37c500e6b3079bfd4c971 Mon Sep 17 00:00:00 2001 From: Eric Lindvall Date: Wed, 5 Mar 2014 21:15:09 -0800 Subject: [PATCH] Release 0.13.4 --- History.txt | 8 ++++++++ god.gemspec | 4 ++-- lib/god.rb | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index b9e54c9b..97bf225e 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,11 @@ +== 0.13.4 / 2014-03-05 + * Minor Enhancements + * Hipchat reporter (#162) + * Re-open log files on SIGUSR1 (#103) + * Bug fixes + * Send query params on webhook reporter (#160) + * Don't thow an exception when there are problems reading pid file (#164) + == 0.13.3 / 2013-09-25 * Minor Enhancements * Invoke commands for all watchers diff --git a/god.gemspec b/god.gemspec index fcf57159..5183b3c4 100644 --- a/god.gemspec +++ b/god.gemspec @@ -3,8 +3,8 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.name = 'god' - s.version = '0.13.3' - s.date = '2014-03-04' + s.version = '0.13.4' + s.date = '2014-03-05' s.summary = "Process monitoring framework." s.description = "An easy to configure, easy to extend monitoring framework written in Ruby." diff --git a/lib/god.rb b/lib/god.rb index 102c1bd3..38bfd761 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -158,7 +158,7 @@ def safe_attr_accessor(*args) module God # The String version number for this package. - VERSION = '0.13.3' + VERSION = '0.13.4' # The Integer number of lines of backlog to keep for the logger. LOG_BUFFER_SIZE_DEFAULT = 100