From: Eric Wong Date: Mon, 5 Dec 2011 18:36:12 +0000 (+0000) Subject: Zbatery 4.1.2 - we don't fork, but our apps may! X-Git-Tag: v4.1.2^0 X-Git-Url: https://repo.or.cz/w/zbatery.git/commitdiff_plain/5c36afdcab8af15cf979e76e87b6c99f857480bc Zbatery 4.1.2 - we don't fork, but our apps may! There are two bugfixes in this release. Rack applications that use fork() internally should now behave as-expected when receiving SIGCHLD. The pid file is also unlinked during a graceful shutdown. --- diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 6969b4b..e8f60dc 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v4.1.1.GIT +DEF_VER=v4.1.2.GIT LF=' ' diff --git a/lib/zbatery.rb b/lib/zbatery.rb index 5d208b1..65c9d0c 100644 --- a/lib/zbatery.rb +++ b/lib/zbatery.rb @@ -4,7 +4,7 @@ require 'rainbows' Rainbows.forked = true module Zbatery - VERSION = "4.1.1" + VERSION = "4.1.2" Rainbows::Const::RACK_DEFAULTS["SERVER_SOFTWARE"] = "Zbatery #{VERSION}"