about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-05 02:00:32 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-05 02:22:39 -0800
commitca2cb5d9faeeeb28314c3d04a042dfd915552488 (patch)
tree5b9f50fc30e3d7dcc0d4eff9a2804d63102f60d0
parent45710e345db1b31cd08217e850c0e95c8ded821d (diff)
downloadrainbows-ca2cb5d9faeeeb28314c3d04a042dfd915552488.tar.gz
We depend on the just-released Unicorn 0.94.0 for the fixed
trailer handling.  As with `unicorn', the `rainbows' executable
now sets and respects ENV["RACK_ENV"].  Also small fixes and
cleanups including better FreeBSD 7.2 compatibility and
less likely to over-aggressively kill slow/idle workers
when a very low timeout is set.

Eric Wong (20):
      rev: split out heartbeat class
      bump Unicorn dependency to (consistently) pass tests
      tests: avoid single backquote in echo
      event_machine: avoid slurping when proxying
      tests: make timeout tests reliable under 1.9
      thread_pool: comment for potential SMP issue under 1.9
      Allow 'use "model"' as a string as well as symbol
      Rev model is the only user of deferred_bodies
      ev_core: use Tempfile instead of Unicorn::Util::tmpio
      ev_core: ensure quit is triggered on all errors
      rainbows: set and use process-wide ENV["RACK_ENV"]
      http_server: add one second to any requested timeout
      thread_pool: update fchmod heartbeat every second
      t0004: tighten up timeout test
      ev_core: remove Tempfile usage once again
      cleanup: remove unused t????.ru test files
      tests: staggered trailer upload test
      ensure RACK_ENV is inherited from the parent env
      t0100: more precise `expr` usage
-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 4a466ed..9ae4282 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.4.0.GIT
+DEF_VER=v0.5.0.GIT
 
 LF='
 '
diff --git a/GNUmakefile b/GNUmakefile
index 6fc7103..6f164c5 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -64,7 +64,7 @@ NEWS: GIT-VERSION-FILE
         $(rake) -s news_rdoc > $@+
         mv $@+ $@
 
-SINCE = 0.1.1
+SINCE = 0.4.0
 ChangeLog: log_range = $(shell test -n "$(SINCE)" && echo v$(SINCE)..)
 ChangeLog: GIT-VERSION-FILE
         @echo "ChangeLog from $(GIT_URL) ($(SINCE)..$(GIT_VERSION))" > $@+
diff --git a/lib/rainbows/const.rb b/lib/rainbows/const.rb
index f1398ed..34a1644 100644
--- a/lib/rainbows/const.rb
+++ b/lib/rainbows/const.rb
@@ -3,7 +3,7 @@
 module Rainbows
 
   module Const
-    RAINBOWS_VERSION = '0.4.0'
+    RAINBOWS_VERSION = '0.5.0'
 
     include Unicorn::Const