diff --git a/History.txt b/History.txt index fcb03184..861b2f4b 100644 --- a/History.txt +++ b/History.txt @@ -1,8 +1,12 @@ -== 0.12.1 +== 0.13.0 / 2012-09-17 + * Minor Changes + * Reduce verbosity of non-failing conditions (#111) + +== 0.12.1 / 2012-01-21 * Bug Fixes * Fix undefined variable problem in CLI (#82) -== 0.12.0 +== 0.12.0 / 2012-01-13 * Minor Enhancements * Add umask support * Add socket response condition (#25) diff --git a/god.gemspec b/god.gemspec index 52e70411..b03d07b9 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.12.1' - s.date = '2012-01-21' + s.version = '0.13.0' + s.date = '2012-09-17' 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 eb8318f4..9cc4632a 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -151,7 +151,7 @@ def safe_attr_accessor(*args) module God # The String version number for this package. - VERSION = '0.12.1' + VERSION = '0.13.0' # The Integer number of lines of backlog to keep for the logger. LOG_BUFFER_SIZE_DEFAULT = 100