From: Eric Wong Date: Mon, 27 Jun 2011 09:51:43 +0000 (+0000) Subject: Zbatery 4.0.0 - another Rainbows! resync X-Git-Tag: v4.0.0^0 X-Git-Url: https://repo.or.cz/w/zbatery.git/commitdiff_plain/4410cd08162b34c4caf93d10d4b35de2e5f845aa Zbatery 4.0.0 - another Rainbows! resync This gets most of the improvements Rainbows! 4.0.0 got: * client_max_header_size directive is added to limit per-client memory usage in headers. * An experimental StreamResponseEpoll concurrency option * minor bugfixes, minor stack depth reduction Since Zbatery doesn't fork workers, the ability of Unicorn 4.x to scale to a large amount of worker processes doesn't matter to us. --- diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index b059f8b..e99b00f 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v3.4.0.GIT +DEF_VER=v4.0.0.GIT LF=' ' diff --git a/lib/zbatery.rb b/lib/zbatery.rb index c2b0aa3..15a32af 100644 --- a/lib/zbatery.rb +++ b/lib/zbatery.rb @@ -4,7 +4,7 @@ require 'rainbows' Rainbows.forked = true module Zbatery - VERSION = "3.4.0" + VERSION = "4.0.0" Rainbows::Const::RACK_DEFAULTS["SERVER_SOFTWARE"] = "Zbatery #{VERSION}"