From e1865c25fa0e8169dc2de7d1c6b9a6648bf81842 Mon Sep 17 00:00:00 2001 From: schneems Date: Thu, 12 Apr 2018 14:38:52 -0500 Subject: [PATCH] v 3.11.4 --- History.md | 12 ++++++++++++ Release.md | 8 ++++++++ lib/puma/const.rb | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index 7ba82526..dab785b5 100644 --- a/History.md +++ b/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 bugfixes: diff --git a/Release.md b/Release.md index a0faad8e..048aff7b 100644 --- a/Release.md +++ b/Release.md @@ -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. diff --git a/lib/puma/const.rb b/lib/puma/const.rb index 03db9260..7166d8c5 100644 --- a/lib/puma/const.rb +++ b/lib/puma/const.rb @@ -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