about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-12-13 14:46:22 -0800
committerEric Wong <normalperson@yhbt.net>2009-12-13 14:46:22 -0800
commit5f39d4824b9eff01801c6c8fec98eb77e18426de (patch)
treead40dc10ce0f08838f2eddb325f7bed6cb50d38b
parent7d14629de1d758d0323a0093dac9007d08f9318f (diff)
downloadrainbows-0.9.0.tar.gz
This release introduces compatibility with Sunshowers, a library
for Web Sockets, see http://rainbows.rubyforge.org/sunshowers
for more information.  Several small cleanups and fixes.

Eric Wong (20):
      add RevThreadPool to README
      rev: do not initialize a Rev::Loop in master process
      rainbows.1: update headers
      do not log IOError raised during app processing
      move "async.callback" constant to EvCore
      larger thread  pool default sizes ({Rev,}ThreadPool)
      ev_core: no need to explicitly close TmpIOs
      EventMachine: allow usage as a base class
      NeverBlock: resync with recent our EM-related expansion
      RevThread*: move warning message to a saner place
      EventMachineDefer: preliminary (and) broken version
      TODO: add EM Deferrables
      RevThread*: remove needless nil assignment
      README: HTML5 Web Sockets may not be supported, yet...
      env["hack.io"] for Fiber*, Revactor, Thread* models
      EventMachineDefer is experimental
      README: add Sunshowers reference
      Rakefile: resync with Unicorn
      doc/comparison: add Web Sockets to comparison
      README updates
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--GNUmakefile2
-rw-r--r--lib/rainbows/const.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index fa41b67..63c979d 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.8.0.GIT
+DEF_VER=v0.9.0.GIT
 
 LF='
 '
diff --git a/GNUmakefile b/GNUmakefile
index e19fef9..3dec3e9 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -58,7 +58,7 @@ NEWS: GIT-VERSION-FILE
         $(RAKE) -s news_rdoc > $@+
         mv $@+ $@
 
-SINCE = 0.6.0
+SINCE = 0.8.0
 ChangeLog: LOG_VERSION = \
   $(shell git rev-parse -q "$(GIT_VERSION)" >/dev/null 2>&1 && \
           echo $(GIT_VERSION) || git describe)
diff --git a/lib/rainbows/const.rb b/lib/rainbows/const.rb
index 900c9d9..1018623 100644
--- a/lib/rainbows/const.rb
+++ b/lib/rainbows/const.rb
@@ -3,7 +3,7 @@
 module Rainbows
 
   module Const
-    RAINBOWS_VERSION = '0.8.0'
+    RAINBOWS_VERSION = '0.9.0'
 
     include Unicorn::Const