diff --git a/History.txt b/History.txt index a6b08c58..e78c648b 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,28 @@ +=== 2.0.0.b7 / 2013-03-18 + +* 5 minor enhancements: + + * Add -q option for :start + * Add -V, --version + * Add default Rack handler helper + * Upstart support + * Set worker directory from configuration file + +* 12 bug fixes: + + * Close the binder in the right place. Fixes #192 + * Handle early term in workers. Fixes #206 + * Make sure that the default port is 80 when the request doesn't include HTTP_X_FORWARDED_PROTO. + * Prevent Errno::EBADF errors on restart when running ruby 2.0 + * Record the proper @master_pid + * Respect the header HTTP_X_FORWARDED_PROTO when the host doesn't include a port number. + * Retry EAGAIN/EWOULDBLOCK during syswrite + * Run exec properly to restart. Fixes #154 + * Set Rack run_once to false + * Syncronize all access to @timeouts. Fixes #208 + * Write out the state post-daemonize. Fixes #189 + * Prevent crash when all workers are gone + === 2.0.0.b6 / 2013-02-06 * 2 minor enhancements: diff --git a/lib/puma/const.rb b/lib/puma/const.rb index a799219e..b74da466 100644 --- a/lib/puma/const.rb +++ b/lib/puma/const.rb @@ -28,7 +28,7 @@ module Puma # too taxing on performance. module Const - PUMA_VERSION = VERSION = "2.0.0.b6".freeze + PUMA_VERSION = VERSION = "2.0.0.b7".freeze FAST_TRACK_KA_TIMEOUT = 0.2