1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Bump to 2.0.0.b7

This commit is contained in:
Evan Phoenix 2013-03-18 22:24:10 -07:00
parent 7c6d72b578
commit deddeedccb
2 changed files with 26 additions and 1 deletions

View file

@ -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:

View file

@ -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