From 958c1f81a2c570f4027d8fe2dd4f5c40ac7ed430 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 16 Nov 2010 16:00:07 -0800 Subject: unicorn 3.0.0pre1 Rewindable "rack.input" may be disabled via the "rewindable_input false" directive in the configuration file. This will violate Rack::Lint for Rack 1.x applications, but can reduce I/O for applications that do not need it. There are also internal cleanups and enhancements for future versions of Rainbows! Eric Wong (11): t0012: fix race condition in reload enable HTTP keepalive support for all methods http_parser: add HttpParser#next? method tee_input: switch to simpler API for parsing trailers switch versions to 3.0.0pre add stream_input class and build tee_input on it configurator: enable "rewindable_input" directive http_parser: ensure keepalive is disabled when reset *_input: make life easier for subclasses/modules tee_input: restore read position after #size preread_input: no-op for non-rewindable "rack.input" --- GIT-VERSION-GEN | 2 +- lib/unicorn/const.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 3b85f11..b4784c4 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v3.0.0pre.GIT +DEF_VER=v3.0.0pre1.GIT LF=' ' diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb index cdb5f11..375f72f 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 3.0.0pre - UNICORN_VERSION = "3.0.0pre" + # The current version of Unicorn, currently 3.0.0pre1 + UNICORN_VERSION = "3.0.0pre1" # default TCP listen host address (0.0.0.0, all interfaces) DEFAULT_HOST = "0.0.0.0" -- cgit v1.2.3-24-ge0c7