diff --git a/History.txt b/History.txt index 75d0c703..b9e54c9b 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,9 @@ +== 0.13.3 / 2013-09-25 + * Minor Enhancements + * Invoke commands for all watchers + * Airbrake reporter + * Improvements to socket responding condition + == 0.13.2 / 2013-02-26 * Minor Enhancements * Added file_touched condition (#86) diff --git a/god.gemspec b/god.gemspec index 407fa376..8eaed96a 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.2' - s.date = '2013-02-26' + s.version = '0.13.3' + s.date = '2013-09-25' s.summary = "Process monitoring framework." s.description = "An easy to configure, easy to extend monitoring framework written in Ruby." @@ -80,6 +80,7 @@ Gem::Specification.new do |s| lib/god/conditions/tries.rb lib/god/configurable.rb lib/god/contact.rb + lib/god/contacts/airbrake.rb lib/god/contacts/campfire.rb lib/god/contacts/email.rb lib/god/contacts/jabber.rb diff --git a/lib/god.rb b/lib/god.rb index 9522c101..21394a9a 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -157,7 +157,7 @@ def safe_attr_accessor(*args) module God # The String version number for this package. - VERSION = '0.13.2' + VERSION = '0.13.3' # The Integer number of lines of backlog to keep for the logger. LOG_BUFFER_SIZE_DEFAULT = 100