mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
v 3.11.4
This commit is contained in:
parent
5fb2df9144
commit
e1865c25fa
3 changed files with 21 additions and 1 deletions
12
History.md
12
History.md
|
@ -1,3 +1,15 @@
|
||||||
|
## 3.11.4 / 2018-04-12
|
||||||
|
|
||||||
|
* 2 features:
|
||||||
|
* Manage puma as a service using rc.d (#1529)
|
||||||
|
* Server stats are now available from a top level method (#1532)
|
||||||
|
* 5 bugfixes:
|
||||||
|
* Fix parsing CLI options (#1482)
|
||||||
|
* Order of stderr and stdout is made before redirecting to a log file (#1511)
|
||||||
|
* Init.d fix of `ps -p` to check if pid exists (#1545)
|
||||||
|
* Early hits bugfix (#1550)
|
||||||
|
* Purge interrupt queue when closing socket fails (#1553)
|
||||||
|
|
||||||
## 3.11.3 / 2018-03-05
|
## 3.11.3 / 2018-03-05
|
||||||
|
|
||||||
* 3 bugfixes:
|
* 3 bugfixes:
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
## Before Release
|
||||||
|
|
||||||
|
- Make sure tests pass and your last local commit matches master.
|
||||||
|
- Run tests with latest jruby
|
||||||
|
- Update the version in `const.rb`.
|
||||||
|
- Make sure there is a history entry in `History.md`.
|
||||||
|
- On minor version updates i.e. from 3.10.x to 3.11.x update the "codename" in `const.rb`.
|
||||||
|
|
||||||
# Release process
|
# Release process
|
||||||
|
|
||||||
Using "3.7.1" as a version example.
|
Using "3.7.1" as a version example.
|
||||||
|
|
|
@ -98,7 +98,7 @@ module Puma
|
||||||
# too taxing on performance.
|
# too taxing on performance.
|
||||||
module Const
|
module Const
|
||||||
|
|
||||||
PUMA_VERSION = VERSION = "3.11.3".freeze
|
PUMA_VERSION = VERSION = "3.11.4".freeze
|
||||||
CODE_NAME = "Love Song".freeze
|
CODE_NAME = "Love Song".freeze
|
||||||
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
|
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue