From b0257b3939723dfb481e62c1fe9b079cc1f525b5 Mon Sep 17 00:00:00 2001 From: Eric Lindvall Date: Tue, 18 Sep 2012 12:32:56 -0700 Subject: [PATCH] Release 0.13.1 --- History.txt | 4 ++++ god.gemspec | 4 ++-- lib/god.rb | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index 861b2f4b..0c9768a4 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== 0.13.1 / 2012-09-18 + * Minor Changes + * Prevent auto-loading from bundler by requiring $load_god to require (#97) + == 0.13.0 / 2012-09-17 * Minor Changes * Reduce verbosity of non-failing conditions (#111) diff --git a/god.gemspec b/god.gemspec index b03d07b9..773c5c73 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.0' - s.date = '2012-09-17' + s.version = '0.13.1' + s.date = '2012-09-18' 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 c13567b2..cafac005 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -155,7 +155,7 @@ def safe_attr_accessor(*args) module God # The String version number for this package. - VERSION = '0.13.0' + VERSION = '0.13.1' # The Integer number of lines of backlog to keep for the logger. LOG_BUFFER_SIZE_DEFAULT = 100