diff --git a/History.txt b/History.txt index 0c9768a4..75d0c703 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,10 @@ +== 0.13.2 / 2013-02-26 + * Minor Enhancements + * Added file_touched condition (#86) + * Bug fixes + * Ensure Ruby 1.9 fixes only apply to 1.9.0 and 1.9.1 (#125) + * Documentation fixes (#109, #84, #92) + == 0.13.1 / 2012-09-18 * Minor Changes * Prevent auto-loading from bundler by requiring $load_god to require (#97) diff --git a/god.gemspec b/god.gemspec index cf407ff6..9245560d 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.1' - s.date = '2012-09-18' + s.version = '0.13.2' + s.date = '2013-02-26' 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 e0b6c345..bd16b5e6 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -156,7 +156,7 @@ def safe_attr_accessor(*args) module God # The String version number for this package. - VERSION = '0.13.1' + VERSION = '0.13.2' # The Integer number of lines of backlog to keep for the logger. LOG_BUFFER_SIZE_DEFAULT = 100