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

Bump to 1.2.2

This commit is contained in:
Evan Phoenix 2012-04-28 10:04:05 -07:00
parent e021249f51
commit f92ebee3e6
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,12 @@
=== 1.2.2 / 2012-04-28
* 4 bug fixes:
* Report a lowlevel error to stderr
* Set a fallback SERVER_NAME and SERVER_PORT
* Keep the encoding of the body correct. Fixes #79
* show error.to_s along with backtrace for low-level error
=== 1.2.1 / 2012-04-11
1 bug fix:

View file

@ -25,6 +25,8 @@ module Puma
# too taxing on performance.
module Const
PUMA_VERSION = VERSION = "1.2.2".freeze
# The default number of seconds for another request within a persistent
# session.
PERSISTENT_TIMEOUT = 20
@ -39,8 +41,6 @@ module Puma
PATH_INFO = 'PATH_INFO'.freeze
PUMA_VERSION = VERSION = "1.2.1".freeze
PUMA_TMP_BASE = "puma".freeze
# The standard empty 404 response for bad requests. Use Error4040Handler for custom stuff.