This commit is contained in:
schneems 2018-04-12 14:38:52 -05:00
parent 5fb2df9144
commit e1865c25fa
3 changed files with 21 additions and 1 deletions

View File

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

View File

@ -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
Using "3.7.1" as a version example.

View File

@ -98,7 +98,7 @@ module Puma
# too taxing on performance.
module Const
PUMA_VERSION = VERSION = "3.11.3".freeze
PUMA_VERSION = VERSION = "3.11.4".freeze
CODE_NAME = "Love Song".freeze
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze