1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
This commit is contained in:
schneems 2019-01-08 16:36:05 -06:00
parent 36964ec429
commit 7e2c88d413
2 changed files with 16 additions and 1 deletions

View file

@ -1,3 +1,18 @@
## Master
* x features
* x bugfixes
## 3.12.1 / 2019-01-08
* 1 features
* Internal strings are frozen (#1649)
* 3 bugfixes
* Fix chunked ending check (#1607)
* Rack handler should use provided default host (#1700)
* Better support for detecting runtimes that support `fork` (#1630)
## 3.12.0 / 2018-07-13
* 5 features:

View file

@ -100,7 +100,7 @@ module Puma
# too taxing on performance.
module Const
PUMA_VERSION = VERSION = "3.12.0".freeze
PUMA_VERSION = VERSION = "3.12.1".freeze
CODE_NAME = "Llamas in Pajamas".freeze
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze