From: tom Date: Sat, 5 Jan 2008 00:23:37 +0000 (-0800) Subject: up to 0.6.5 X-Git-Url: https://repo.or.cz/w/god.git/commitdiff_plain/0e1f9263ce16323bf0fd5c85f3113a42e90444d7 up to 0.6.5 --- diff --git a/History.txt b/History.txt index 4c503dd..650d34d 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,9 @@ -== 0.6.4 / +== 0.6.5 / 2008-01-04 + * Bug Fixes + * Fix Timer descheduling deadlock issue + * Change HttpResponseCode to use GET instead of HEAD + +== 0.6.4 / 2008-12-31 * Bug Fixes * Refactor Hub to clarify mutexing * Eliminate potential iteration problem in Timer diff --git a/Rakefile b/Rakefile index 8649f84..ea127db 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ require 'rubygems' require 'hoe' -Hoe.new('god', '0.6.4') do |p| +Hoe.new('god', '0.6.5') do |p| p.rubyforge_name = 'god' p.author = 'Tom Preston-Werner' p.email = 'tom@rubyisawesome.com' diff --git a/lib/god.rb b/lib/god.rb index 075ffb3..2b7e270 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -132,7 +132,7 @@ class Module end module God - VERSION = '0.6.4' + VERSION = '0.6.5' LOG_BUFFER_SIZE_DEFAULT = 1000 PID_FILE_DIRECTORY_DEFAULT = '/var/run/god'