about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-11-18 07:42:40 +0800
committerEric Wong <normalperson@yhbt.net>2010-11-18 07:47:20 +0800
commit268c2ec5fef2630b0626b848be9d6ec46d360ddb (patch)
treee275cb72905ec03360c6b9eb07c8c85058d2d451
parent859593b418db7e5fd93295a7a8b15de56cc4f6dd (diff)
downloadunicorn-268c2ec5fef2630b0626b848be9d6ec46d360ddb.tar.gz
This release fixes errors in our own error handling,
causing certain errors to not be logged nor responded
to correctly.

Eric Wong (3):
      t0012: fix race condition in reload
      http_server: fix HttpParserError constant resolution
      tests: add parser error test from Rainbows!
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/unicorn/const.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 0550f7e..2ca4f94 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v2.0.0.GIT
+DEF_VER=v2.0.1.GIT
 
 LF='
 '
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index 3b324c7..dc75914 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -7,8 +7,8 @@
 # improve things much compared to constants.
 module Unicorn::Const
 
-  # The current version of Unicorn, currently 2.0.0
-  UNICORN_VERSION = "2.0.0"
+  # The current version of Unicorn, currently 2.0.1
+  UNICORN_VERSION = "2.0.1"
 
   # default TCP listen host address (0.0.0.0, all interfaces)
   DEFAULT_HOST = "0.0.0.0"