about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-05-21 03:28:23 +0000
committerEric Wong <normalperson@yhbt.net>2011-05-21 03:28:23 +0000
commit7e3ea3cf5de40c119bfc4c6566bb52fd48635c8c (patch)
tree4c39a2c5314ccc9fbb4b6c6db1ac24f58afb055e
parent604dc05809e14c41f148962cc7d6849a941f8e8f (diff)
downloadzbatery-3.4.0.tar.gz
Zbatery 3.4.0 - another Rainbows! resync v3.4.0
This release fixes dependencies on Rainbows! and gets all
the improvements Rainbows! 3.4.0 got:

* Kgio.autopush support for multi-threaded configurations
* Immediate disconnect of idle clients on SIGQUIT for
  concurrency models where idle clients are cheap to maintain.
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/zbatery.rb2
-rw-r--r--t/test_isolate.rb6
-rw-r--r--zbatery.gemspec2
4 files changed, 6 insertions, 6 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 861c86f..b059f8b 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v3.1.0.GIT
+DEF_VER=v3.4.0.GIT
 
 LF='
 '
diff --git a/lib/zbatery.rb b/lib/zbatery.rb
index 07566fa..f038f63 100644
--- a/lib/zbatery.rb
+++ b/lib/zbatery.rb
@@ -4,7 +4,7 @@ require 'rainbows'
 Rainbows.forked = true
 module Zbatery
 
-  VERSION = "3.3.0"
+  VERSION = "3.4.0"
 
   class << self
 
diff --git a/t/test_isolate.rb b/t/test_isolate.rb
index 516752d..dd79a58 100644
--- a/t/test_isolate.rb
+++ b/t/test_isolate.rb
@@ -14,7 +14,7 @@ old_out = $stdout.dup
 $stdout.reopen($stderr)
 
 Isolate.now!(opts) do
-  gem 'rainbows', '3.3.0'
+  gem 'rainbows', '3.4.0'
   gem 'raindrops', '0.6.1'
 
   if engine == "ruby"
@@ -34,10 +34,10 @@ Isolate.now!(opts) do
   end
 
   if RUBY_PLATFORM =~ /linux/
-    gem 'sleepy_penguin', '2.0.0'
+    gem 'sleepy_penguin', '3.0.0'
 
     # is 2.6.32 new enough?
-    gem 'io_splice', '4.1.0' if `uname -r`.strip > '2.6.32'
+    gem 'io_splice', '4.1.1' if `uname -r`.strip > '2.6.32'
   end
 end
 
diff --git a/zbatery.gemspec b/zbatery.gemspec
index 7381de7..de26057 100644
--- a/zbatery.gemspec
+++ b/zbatery.gemspec
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
   #   espace-neverblock + eventmachine
   #   async_sinatra + sinatra + eventmachine
   #
-  s.add_dependency(%q<rainbows>, ["~> 3.1.0"])
+  s.add_dependency(%q<rainbows>, ["~> 3.4.0"])
   s.add_development_dependency(%q<wrongdoc>, "~> 1.5")
   s.add_development_dependency(%q<isolate>, "~> 3.0.0")