about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-06-29 18:49:45 +0000
committerEric Wong <normalperson@yhbt.net>2011-06-29 18:56:47 +0000
commit79c646d69822df542aaabe285eac08cdf4111dc0 (patch)
treebc05230ba2bddab298b251f2f470d25836390aef
parentcdb9bc905cf8e15e8a7d0900f57409f54a7b80ac (diff)
downloadunicorn-79c646d69822df542aaabe285eac08cdf4111dc0.tar.gz
This release fixes things for users of per-worker "listen"
directives in the after_fork hook.  Thanks to ghazel@gmail.com
for reporting the bug.

The "timeout" configurator directive is now truncated to
0x7ffffffe seconds to prevent overflow when calling
IO.select.
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/unicorn/const.rb3
2 files changed, 2 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index e99b00f..98403da 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v4.0.0.GIT
+DEF_VER=v4.0.1.GIT
 
 LF='
 '
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index eb85837..a119629 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -8,8 +8,7 @@
 # improve things much compared to constants.
 module Unicorn::Const
 
-  # The current version of Unicorn, currently 4.0.0
-  UNICORN_VERSION = "4.0.0"
+  UNICORN_VERSION = "4.0.1"
 
   # default TCP listen host address (0.0.0.0, all interfaces)
   DEFAULT_HOST = "0.0.0.0"