mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Bump to 3.0.2
This commit is contained in:
parent
a57b166309
commit
32b1fb3742
2 changed files with 17 additions and 1 deletions
16
History.txt
16
History.txt
|
@ -1,3 +1,19 @@
|
||||||
|
=== 3.0.2 / 2016-02-26
|
||||||
|
|
||||||
|
* 5 bug fixes:
|
||||||
|
|
||||||
|
* Fix 'undefined local variable or method `pid` for #<Puma::ControlCLI:0x007f185fcef968>' when execute pumactl with `--pid` option.
|
||||||
|
* Fix 'undefined method `windows?` for Puma:Module' when execute pumactl.
|
||||||
|
* Harden tmp_restart against errors related to the restart file
|
||||||
|
* Make `plugin :tmp_restart` behavior correct in Windows.
|
||||||
|
* fix uninitialized constant Puma::ControlCLI::StateFile
|
||||||
|
|
||||||
|
* 3 PRs merged:
|
||||||
|
|
||||||
|
* Merge pull request #901 from mitto/fix-pumactl-uninitialized-constant-statefile
|
||||||
|
* Merge pull request #902 from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
|
||||||
|
* Merge pull request #905 from Eric-Guo/master
|
||||||
|
|
||||||
=== 3.0.1 / 2016-02-25
|
=== 3.0.1 / 2016-02-25
|
||||||
|
|
||||||
* 1 bug fix:
|
* 1 bug fix:
|
||||||
|
|
|
@ -99,7 +99,7 @@ module Puma
|
||||||
# too taxing on performance.
|
# too taxing on performance.
|
||||||
module Const
|
module Const
|
||||||
|
|
||||||
PUMA_VERSION = VERSION = "3.0.1".freeze
|
PUMA_VERSION = VERSION = "3.0.2".freeze
|
||||||
CODE_NAME = "Plethora of Penguin Pinatas".freeze
|
CODE_NAME = "Plethora of Penguin Pinatas".freeze
|
||||||
|
|
||||||
FAST_TRACK_KA_TIMEOUT = 0.2
|
FAST_TRACK_KA_TIMEOUT = 0.2
|
||||||
|
|
Loading…
Reference in a new issue